Open In App

PHP | Imagick::shaveImage() Function

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:

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:

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

Article Tags :