Open In App

PHP | Imagick::shaveImage() Function

Last Updated : 26 Aug, 2019
Summarize
Comments
Improve
Suggest changes
Like Article
Like
Share
Report
News Follow

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
  
// Create an imagick object
$imagick = new Imagick(
  
// 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

Similar Reads

three90RightbarBannerImg