当前位置: 首页 > 实例教程 > PHP imagick实例 > list > imagick_first()
<?php $handle = imagick_readimage( getcwd() . "/example/files/c/animated.gif" ) ; if ( imagick_iserror( $handle ) ) { $reason = imagick_failedreason( $handle ) ; $description = imagick_faileddescription( $handle ) ; print "handle2 failed!<BR>\nReason: $reason<BR>\nDescription: $description<BR>\n" ; exit ; } // // Move 2 frames in, then come back to the first frame. // imagick_next( $handle ) ; imagick_next( $handle ) ; imagick_first( $handle ) ; // // Extract just the current image from the list. // $new_handle = imagick_getimagefromlist( $handle ) ; header( "Content-type: " . imagick_getmimetype( $new_handle ) ) ; print imagick_image2blob( $new_handle ) ; ?>