Monday, October 6, 2025
HomeLanguagesPHP | Imagick shearImage() function

PHP | Imagick shearImage() function

The Imagick::shearImage() function is an inbuilt function in PHP which is used to creating a parallelogram. The X-direction shear slides an edge along the X-axis, while a Y direction shear slides an edge along the Y-axis. The amount of the shear is controlled by a shear angle.

Syntax:

bool Imagick::shearImage( $background, $x_shear, $y_shear )

Parameters: This function accepts three parameters as mentioned above and described below:

  • $background: This parameter is used to set the background color.
  • $x_shear: This parameter is used to set the number of degrees to shear on the x axis.
  • $y_shear: This parameter is used to set the number of degrees to shear on the y axis.

Return Value: This function returns True on success.

Below program illustrates the Imagick::shearImage() function in PHP:

Program:




<?php
  
// Create an Imagick object
$imagick = new Imagick(
  
// Use shearimage function
$imagick->shearimage('rgb(127, 127, 127)', 15, 5);
  
header("Content-Type: image/jpg");
  
// Display the output image
echo $imagick->getImageBlob();
?>


Output:
shear image

Related Articles:

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

RELATED ARTICLES

Most Popular

Dominic
32337 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6707 POSTS0 COMMENTS
Nicole Veronica
11871 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6823 POSTS0 COMMENTS
Ted Musemwa
7089 POSTS0 COMMENTS
Thapelo Manthata
6779 POSTS0 COMMENTS
Umr Jansen
6779 POSTS0 COMMENTS