(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.
Notă: Comportamentul parametrului
bestfit
s-a schimbat în Imagick 3.0.0. Anterior acestei versiuni în cazul dimensiunilor 400x400, o imagine cu dimensiunile 200x150 ar fi rămas neschimbată. În Imagick 3.0.0 și versiunile ulterioare imaginea va fi mărită la dimensiunile 400x300 deoarece aceasta este "cea mai bună potrivire" pentru dimensiunile date. Dacă parametrulbestfit
este utilizat, trebuie furnizate atât lățimea, cât și înălțimea.
columns
Image width
rows
Image height
bestfit
Whether to force maximum values
Întoarce TRUE
în caz de succes.
Emite ImagickException în caz de eroare.
Example #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();
}
?>