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

effects
imagick_blur()
imagick_charcoal()
imagick_contrast()
imagick_despeckle()
imagick_edge()
imagick_emboss()
imagick_enhance()
imagick_equalize()
imagick_gaussianblur()
imagick_medianfilter()
imagick_modulate()
imagick_motionblur()
imagick_negate()
imagick_normalize()
imagick_oilpaint()
imagick_reducenoise()
imagick_shade()
imagick_sharpen()
imagick_solarize()
imagick_spread()

effects 中的 imagick_normalize()


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

normalize - 软晨网(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 ; } imagick_normalize( $handle ) ; 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

登陆 | 还没注册?