(PECL imagick 2, PECL imagick 3)
Imagick::cropImage — Extracts a region of the image
public Imagick::cropImage( int $width, int $height, int $x, int $y ): bool
Extracts a region of the image.
widthThe width of the crop
heightThe height of the crop
xThe X coordinate of the cropped region's top left corner
yThe Y coordinate of the cropped region's top left corner
Returns true on success.
Throws ImagickException on error.
Example #1 Imagick::cropImage()
<?php
function cropImage($imagePath, $startX, $startY, $width, $height) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->cropImage($width, $height, $startX, $startY);
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>
© 1997–2025 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/imagick.cropimage.php