Open In App

PHP | Imagick::shaveImage() Function

Last Updated : 26 Aug, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The Imagick::shaveImage() function is an inbuilt function in PHP which is used to shaves pixels from the image edges. It allocates the memory necessary for the new Image structure and returns a pointer to the new image. Syntax:
bool Imagick::shaveImage( $columns, $rows )
Parameters: This function accepts two parameters as mentioned above and described below:
  • $columns: This parameter is used to set the column pixel of image.
  • $rows: This parameter is used to set the row pixel of image.
Return Value: This function returns True on success. Below program illustrates the Imagick::shaveImage() function in PHP: Program: php
<?php

// Create an imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');

// Use shaveImage function
$imagick->shaveImage(100, 50);

header("Content-Type: image/jpg");

// Display the output image
echo $imagick->getImageBlob();
?>
Output: shaveimage Reference: http://php.net/manual/en/imagick.shaveimage.php

Next Article
Practice Tags :

Similar Reads