Saturday, November 22, 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
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6784 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6848 POSTS0 COMMENTS