Open In App

PHP | Imagick cropThumbnailImage() Function

Improve
Improve
Like Article
Like
Save
Share
Report

The Imagick::cropThumbnailImage() function is an inbuilt function in PHP which is used to create a cropped thumbnail. This function creates a fixed-size thumbnail by first scaling the image up or down with height and weight parameters, and then cropping an area from the center of the image.

Note: Using cropThumbnailImage() function can appear to give undesired results while using .gif image formats. If you are using .gif, you need to compliment this function with the removal of the canvas.

Syntax:

bool Imagick::cropThumbnailImage( $width, $height, $legacy = FALSE )

Parameters: This function accept two parameters as mentioned above and described below:

  • $width: This parameter holds the width of the thumbnail.
  • $height: This parameter holds the height of the thumbnail.

Return Value: This function returns True on success.

Errors/Exceptions: This function throws ImagickException on error.

Original Image:

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

Program:




<?php
   
// Create a new object
$image = new Imagick(
   
// Crop and resize the image
$image -> cropThumbnailImage(300, 50);
   
// Remove the canvas using the line below 
// if the image is a .gif file:
// $image->setImagePage(0, 0, 0, 0);
   
// Image header
header('Content-type: image/png');
    
// Display resulting image:
echo $image;
  
?>


Output:

Reference: https://www.php.net/manual/en/imagick.cropthumbnailimage.php


Last Updated : 17 Jul, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads