The Imagick::trimImage() function is an inbuilt function in PHP which is used to remove the edges from the image.
Syntax:
bool Imagick::trimImage( $fuzz )
Parameters: This function accepts single parameter $fuzz. The fuzz member of image defines how much tolerance is acceptable to consider two colors as the same. This parameter represents the variation on the quantum range.
Return Value: This function returns True on success.Â
Errors/Exceptions: This function throws ImagickException on error. Below program illustrates the Imagick::trimImage() function in PHP:Â
Program:Â
php
?php Â
// Create an Imagick object $imagick = new Imagick( Â
// Trim the image. $imagick ->trimImage(0); Â
// Output the image header("Content-Type: image/" . $imagick ->getImageFormat()); echo $imagick ; ?> |
Output:
Â
Related Articles: