当前位置: 首页 > 实例教程 > PHP imagick实例 > get > imagick_getheight()
<?php $handle = imagick_readimage( getcwd() . "/example/files/c/image.jpg" ) ; if ( imagick_iserror( $handle ) ) { $reason = imagick_failedreason( $handle ) ; $description = imagick_faileddescription( $handle ) ; print "handle failed!<BR>\nReason: $reason<BR>\nDescription: $description<BR>\n" ; exit ; } print "Image height is " . imagick_getheight( $handle ) . " pixels<BR>\n" ; ?>