PHP | Gmagick trimimage() function Last Updated : 23 Jan, 2020 Comments Improve Suggest changes Like Article Like Report The Gmagick::trimimage() function is an inbuilt function in PHP which is used to remove edges that are the background color from the image. Syntax: Gmagick Gmagick::trimimage( float $fuzz ) Parameters:This function accepts a single parameter $fuzz which holds the fuzz. Return Value: This function returns TRUE on success. Exceptions: This function throws GmagickException on error. Below given programs illustrate the Gmagick::trimimage() function in PHP: Program-1 (Trimming an image): php <?php // Create a new Gmagick object // https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png $gmagick = new Gmagick('geeksforgeeks.png'); // Trim the image $gmagick->trimimage(10); // Output the image header('Content-type: image/png'); echo $gmagick; ?> Output: Program-2 (Trimming a drawing): php <?php // Create a new Gmagick object // https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png $gmagick = new Gmagick('geeksforgeeks.png'); // Create a GmagickDraw object $draw = new GmagickDraw(); // Set the color $draw->setFillColor('white'); // Function to draw rectangle $draw->rectangle(0, 0, 800, 400); // Set the fill color $draw->setFillColor('red'); // Set the font size $draw->setfontsize(50); // Annotate a text $draw->annotate(30, 100, 'GeeksforGeeks'); // Use of drawimage function $gmagick->drawImage($draw); // Trim the image $gmagick->trimimage(10); // Display the output image header("Content-Type: image/png"); echo $gmagick->getImageBlob(); ?> Output: Reference: https://www.php.net/manual/en/gmagick.trimimage.php Comment More infoAdvertise with us Next Article PHP | Gmagick trimimage() function G gurrrung Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-Gmagick Similar Reads PHP | Imagick trimImage() Function 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 color 1 min read PHP | Imagick stripImage() Function The Imagick::stripImage() function is an inbuilt function in PHP which is used to strip all profiles and comments from an image. Syntax: bool Imagick::stripImage( void ) Parameters:This function doesnât accepts any parameter. Return Value: This function returns TRUE on success. Exceptions: This func 1 min read PHP | Gmagick writeimage() Function The Gmagick::writeimage() function is an inbuilt function in PHP which is used to write an image to the specified filename. Syntax: Gmagick Gmagick::writeimage( string $filename, bool $all_frames ) Parameters:This function accepts two parameters as mentioned above and described below: $filename: It 2 min read PHP | Gmagick resizeimage() Function The Gmagick::resizeimage() function is an inbuilt function in PHP which is used to scale an image in given dimensions with a filter.Syntax:Â Â Gmagick Gmagick::resizeimage( $width, $height, $filter, $blur) Parameters: This function accepts four parameters as mentioned above and described below:Â Â $wi 2 min read PHP | Gmagick rollimage() Function The Gmagick::rollimage() function is an inbuilt function in PHP which is used to roll an image.Syntax:Â Â Gmagick Gmagick::rollimage( $x, $y ) Parameters: This function accepts two parameters as mentioned above and described below:Â Â $x: This parameter stores the value of the X offset.$y: This parame 1 min read Like