Open In App

PHP | Imagick adaptiveResizeImage() Function

The Imagick::adaptiveResizeImage() function is an inbuilt function in PHP which provides an adaptively resize image feature to the image. The intensity of an adaptive resize image depends on dramatically decreased at the edge of the image. This function is used to resize the image according to web sites. It is useful when it shrinks the images slightly to a slightly smaller “web size” may not look good when a full-sized image is adaptively resized to a thumbnail.

Syntax:



bool Imagick::adaptiveResizeImage ( $columns, $rows, $bestfit )

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

Return Value: This function returns TRUE on success.



Errors/Exceptions: This function throws ImagickException on error.

Below programs illustrate the Imagick::adaptiveResizeImage() function in PHP:

Original Image:

Program:




<?php
  
// require_once('path/to/vendor/autoload.php');
  
header('Content-type: image/png');
  
$image = new Imagick(
  
$image->adaptiveResizeImage(1024, 768);
  
echo $image;
?>

Output:

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

Article Tags :