Open In App

PHP | Imagick spliceImage() Function

Improve
Improve
Like Article
Like
Save
Share
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
  
// Create an Imagick object
$imagick = new Imagick(
  
// 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


Last Updated : 26 Aug, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads