Open In App

PHP | Imagick spliceImage() Function

Last Updated : 26 Aug, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The Imagick::spliceImage() function is an inbuilt function in PHP which is used to splices a solid color into the image. Syntax:
bool Imagick::spliceImage( $width, $height, $x, $y )
Parameters: This function accepts four parameters as mentioned above and described below:
  • $width: This parameter is used to set the slice width of image.
  • $height: This parameter is used to set the slice height of image.
  • $x: This parameter is used to set the slice position on x-axis.
  • $y: This parameter is used to set the slice position on y-axis.
Return Value: This function returns True on success. Below program illustrates the Imagick::spliceImage() function in PHP: Program: php
<?php

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

// Use spliceImage function
$imagick->spliceImage(50, 100, 50, 100);
    
header("Content-Type: image/jpg");

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

Next Article
Practice Tags :

Similar Reads