Friday, November 14, 2025
HomeLanguagesPHP | Imagick chopImage() Function

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 )

Parameters: This function accepts four parameters as mentioned above and described below:

  • $width: This parameter stores the width of the chopped area.
  • $height: This parameter stores the height of the chopped area.
  • $x: This parameter stores the x-origin of the chopped area.
  • $y: This parameter stores the y-origin of the chopped area.

Return Value: This function returns True on success.

Original Image:

Below program illustrates the Imagick::chopImage() function in PHP:

Program:




<?php 
// require_once('path/vendor/autoload.php'); 
   
// Create a new Imagick Object
$image = new Imagick(
  
// chopImage function
$image->chopImage(40, 35, 1, 2);
   
header('Content-type: image/png');
  
// Display the output image
echo $image;
?>


Output:

Related Articles:

Reference: http://php.net/manual/en/imagick.chopimage.php

RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11917 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6889 POSTS0 COMMENTS
Ted Musemwa
7142 POSTS0 COMMENTS
Thapelo Manthata
6837 POSTS0 COMMENTS
Umr Jansen
6840 POSTS0 COMMENTS