当前位置: 首页 > 实例教程 > PHP imagick实例 > misc > imagick_profile()

misc
imagick_animatedgif2jpgs()
imagick_border()
imagick_chop()
imagick_composite()
imagick_convert1()
imagick_convert2()
imagick_convert_and_resize()
imagick_crop()
imagick_gamma()
imagick_level()
imagick_ordereddither()
imagick_profile()
imagick_raise()
imagick_resize()
imagick_sample()
imagick_scale()
imagick_shear()

misc 中的 imagick_profile()


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-07-27   浏览: 462 ::
收藏到网摘: n/a

profile - 软晨网(RuanChen.com)

<?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 ; } // // 4th parameter is optional. If left out, the named profile // (specified by 2nd parameter) is removed. If 2nd parameter is // *, the 4th parameter will apply to all profiles. 3rd parameter // should be any of IMAGICK_PROFILE_*. The currently supported ones // are: // // IMAGICK_PROFILE_OWN value=0 // IMAGICK_PROFILE_COPY value=1 // // For better documentation, go here: // http://www.imagemagick.org/www/api/transform.html#profileimage // imagick_profile( $handle, "*", IMAGICK_PROFILE_OWN ) ; if ( imagick_iserror( $handle ) ) { $reason = imagick_failedreason( $handle ) ; $description = imagick_faileddescription( $handle ) ; print "imagick_profile() failed<BR>\nReason: $reason<BR>\nDescription: $description<BR>\n" ; exit ; } if ( !imagick_writeimage( $handle, getcwd() . "/example/files/c/new_image.jpg" ) ) { $reason = imagick_failedreason( $handle ) ; $description = imagick_faileddescription( $handle ) ; print "imagick_writeimage() failed<BR>\nReason: $reason<BR>\nDescription: $description<BR>\n" ; exit ; } print "Done!<BR>\n" ;
?>


评论 (0) All

登陆 | 还没注册?