PHP | Gmagick cropimage() Function Last Updated : 28 Aug, 2019 Comments Improve Suggest changes Like Article Like Report The Gmagick::cropimage() function is an inbuilt function in PHP which is used to extracts the region of the image. This function crop the part of image. Syntax: public Gmagick::cropimage( $width , $height , $x , $y ) Parameters: This function accept four parameters as mention above and describe below. $width: This parameter is used to specify the width of the cropped image. $height: This parameter is used to specify the height of the cropped image. $x: This parameter is used to specify the X coordinate of the cropped image of top left corner. $y: This parameter is used to specify the Y coordinate of the cropped image of top left corner. Return Value: This function returns the cropped Gmagick object. Below programs illustrate the Gmagick::cropimage() function in PHP: Original Image 1: Program 1: php <?php // require_once('path/vendor/autoload.php'); // Create an Gmagick object $image = new Gmagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); // Gmagick function to crop Image $image->cropimage(390, 100, 0, 0); header("Content-Type: image/jpg"); // Display the image echo $image->getImageBlob(); ?> Output: Original Image 2: Program 2: php <?php $string = "Computer Science portal for Geeks!"; // Creating new image of above String // and add color and background color $im = new Gmagick(); $draw = new GmagickDraw(); // Fill the color in image $draw->setFillColor(new GmagickPixel('green')); // Set the text font size $draw->setFontSize(50); $metrix = $im->queryFontMetrics($draw, $string); $draw->annotation(0, 40, $string); $im->newImage($metrix['textWidth'], $metrix['textHeight'], new GmagickPixel('white')); // Draw the image $im->drawImage($draw); // Set the image format $im->setImageFormat('png'); // Gmagick function to crop Image $im->cropimage(420, 120, 0, 0); header("Content-Type: image/jpg"); // Display the image echo $im->getImageBlob(); ?> Output: Reference: http://php.net/manual/en/gmagick.cropimage.php Comment More infoAdvertise with us Next Article PHP | Gmagick cropimage() Function R R_Raj Follow Improve Article Tags : Web Technologies PHP Image-Processing PHP-function PHP-Gmagick +1 More Similar Reads PHP | Imagick cropImage() Function The Imagick::cropImage() function is an inbuilt function in PHP which is used to extracts the region of the image.Syntax:  int Imagick::cropImage( $width, $height, $x, $y ) Parameters: This function accept four parameters as mention above and describe below.  $width: This parameter is used to spec 2 min read PHP | Gmagick chopimage() Function The Gmagick::chopimage() function is an inbuilt function in PHP which is used to remove the region of an image and trim it. This function accepts the dimension of image and chops the area and the dimension from where the image is to be trim.Syntax:  Gmagick Gmagick::chopimage( $width, $height, $x, 2 min read PHP | Imagick chopImage() Function The Imagick::chopImage() function is an inbuilt function in PHP which is used to remove the region of an image and trim it. This function accepts the dimension of image and chops the area and the dimension from where the image is to be trim. Syntax: bool Imagick::chopImage( $width, $height, $x, $y ) 1 min read PHP | Gmagick flopimage() Function The Gmagick::flopimage() function is an inbuilt function in PHP which is used to create a flopped image. This function creates a mirror image along the y-axis. Syntax: Gmagick Gmagick::flopimage( void )  Parameters: This function does not accept any parameter. Return Value: This function returns fl 1 min read PHP | Gmagick drawimage() Function The Gmagick::drawimage() function is an inbuilt function in PHP which is used to render the GmagickDraw object on the current image. Syntax: Gmagick Gmagick::drawimage ( $GmagickDraw )  Parameters: This function accepts a single parameters as $GmagickDraw which stores the operations to render the i 2 min read Like