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

effects
imagick_threshold()
imagick_unsharpmask()

effects 中的 imagick_negate()


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

negate - 软晨网(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_negate( $handle, 0 ) ; // // or, imagick_negate( $handle, 1 ). 1 and 0 are the only valid // values for the second parameter. 1 means that only the gray scale // within the image should be negated. // 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

登陆 | 还没注册?