Imagick
PHP Manual

Imagick::thumbnailImage

(PECL imagick 2.0.0)

Imagick::thumbnailImageChanges the size of an image

Descrição

bool Imagick::thumbnailImage ( int $columns , int $rows [, bool $bestfit = false [, bool $fill = false ]] )

Changes the size of an image to the given dimensions and removes any associated profiles. The goal is to produce small, low cost thumbnail images suited for display on the Web. If TRUE is given as a third parameter then columns and rows parameters are used as maximums for each side. Both sides will be scaled down until they match or are smaller than the parameter given for the side.

Nota: O comportamento do parâmetro bestfit mudou no Imagick 3.0.0. Antes desta versão ao informar dimensões 400x400 numa imagem de 200x150 não causaria alterações. No Imagick 3.0.0 e posteriores a imagem seria escalada para 400x300 por ser o "melhor ajuste" entre as dimensões. Se bestfit é informado tanto a altura como comprimento devem ser informados.

Parâmetros

columns

Image width

rows

Image height

bestfit

Whether to force maximum values

Valor Retornado

Retorna TRUE no sucesso.

Erros

Lança ImagickException em caso de erro.

Exemplos

Exemplo #1 Imagick::thumbnailImage()

<?php
function thumbnailImage($imagePath) {
    
$imagick = new \Imagick(realpath($imagePath));
    
$imagick->setbackgroundcolor('rgb(64, 64, 64)');
    
$imagick->thumbnailImage(100100truetrue);
    
header("Content-Type: image/jpg");
    echo 
$imagick->getImageBlob();
}

?>


Imagick
PHP Manual