(PECL imagick 2.0.0)
Imagick::thumbnailImage — Changes the size of an image
$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. Sebestfit
é informado tanto a altura como comprimento devem ser informados.
columns
Image width
rows
Image height
bestfit
Whether to force maximum values
Retorna TRUE
no sucesso.
Lança ImagickException em caso de erro.
Exemplo #1 Imagick::thumbnailImage()
<?php
function thumbnailImage($imagePath) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->setbackgroundcolor('rgb(64, 64, 64)');
$imagick->thumbnailImage(100, 100, true, true);
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>