Open In App

PHP | Imagick spliceImage() Function

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:

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:

Related Articles:

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

Article Tags :