Saturday, November 22, 2025
HomeLanguagesPHP | Imagick distortImage() Function

PHP | Imagick distortImage() Function

The Imagick::distortImage() function is an inbuilt function in PHP which is used to distorts an image using various distortion methods.

Syntax:

bool Imagick::distortImage( $method, $arguments, $bestfit )

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

  • $method: This parameter stores the value of the method of image distortion.
  • $arguments: This parameter stores the value of the arguments for the distortion method as an array.
  • $method: This parameter stores the value of type of method which attempt to resize destination to fit distorted source

Return Value: This function returns True on success.

Original Image:

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

Program:




<?php 
  
/*Imagick Object*/
$imagick = new Imagick(
  
$points = array(
    0, 0,
    55, 25,
    100, 0,
    100, 50
);
  
$imagick->setimagebackgroundcolor("lightgreen");
$imagick->setImageVirtualPixelMethod(\Imagick::VIRTUALPIXELMETHOD_BACKGROUND);
  
/* distortImage */
$imagick->distortImage(\Imagick::DISTORTION_AFFINE, $points, true);
  
/*Image Header*/
header("Content-Type: image/jpeg");
echo $imagick;
?>


Output:

Reference: http://php.net/manual/en/imagick.distortimage.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