Sunday, October 5, 2025
HomeLanguagesPHP | Imagick cropThumbnailImage() Function

PHP | Imagick cropThumbnailImage() Function

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

RELATED ARTICLES

Most Popular

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