Open In App

PHP | Imagick::shaveImage() Function

Last Updated : 26 Aug, 2019
Improve
Improve
Like Article
Like
Save
Share
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
  
// 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


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads