当前位置: 首页 > 实例教程 > PHP imagick实例 > misc > imagick_animatedgif2jpgs()
<?php
$handle = imagick_readimage( getcwd() . "/example/files/c/animated.gif" ) ;
if ( imagick_iserror( $handle ) )
{
$reason = imagick_failedreason( $handle ) ;
$description = imagick_faileddescription( $handle ) ;
print "handle failed!<BR>\nReason: $reason<BR>\nDescription: $description<BR>\n" ;
exit ;
}
if ( !imagick_writeimages( $handle, getcwd() . "/example/files/c/new_image.jpg" ) )
{
$reason = imagick_failedreason( $handle ) ;
$description = imagick_faileddescription( $handle ) ;
print "imagick_writeimages() failed<BR>\nReason: $reason<BR>\nDescription: $description<BR>\n" ;
exit ;
}
print "Done!<BR>\n" ;
?>