Thursday, September 4, 2025
HomeLanguagesPHP | Imagick thumbnailImage() Function

PHP | Imagick thumbnailImage() Function

The Imagick::thumbnailImage() function is an inbuilt function in PHP which is used to changes the size of an image to the given dimensions and removes any associated profiles. The goal of this function is to produce small, low-cost thumbnail images suited for display on the Web.

Syntax:

bool Imagick::thumbnailImage( $columns, $rows, $bestfit, $fill, 
$legacy )

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

  • $columns: This parameter is used to set the image width.
  • $rows: This parameter is used to set the image height.
  • bestfit: This parameter describes whether to force maximum values.

Return Value: This function returns True on success.

Errors/Exceptions: This function throws ImagickException on error.

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

Program:




<?php
  
// Create an Imagick object
$imagick = new Imagick(
  
// Function to set the background color
$imagick->setbackgroundcolor('rgb(64, 64, 64)');
  
// Use thumbnailImage function
$imagick->thumbnailImage(100, 100, true, true);
header("Content-Type: image/jpg");
  
// Display the output image    
echo $imagick->getImageBlob();
?>


Output:
thumbnail image

Related Articles:

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

RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6632 POSTS0 COMMENTS
Nicole Veronica
11800 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11860 POSTS0 COMMENTS
Shaida Kate Naidoo
6749 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6698 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS