(PECL imagick 2.0.0)
Equalizes the image histogram
bool Imagick::equalizeImage ( void )
Equalizes the image histogram.
Returns:
Returns TRUE
on success.
Exception:
Throws ImagickException on error.
Examples:
Imagick::equalizeImage()
1 2 3 4 5 6 7 8 9 | <?php function equalizeImage( $imagePath ) { $imagick = new \Imagick( realpath ( $imagePath )); $imagick ->equalizeImage(); header( "Content-Type: image/jpg" ); echo $imagick ->getImageBlob(); } ?> |
Please login to continue.