Imagick::cropThumbnailImage

Creates a crop thumbnail

Description

public bool Imagick::cropThumbnailImage(int $width, int $height, bool $legacy = false)

Creates a fixed size thumbnail by first scaling the image up or down and cropping a specified area from the center.

Parameters

width

The width of the thumbnail

height

The Height of the thumbnail

legacy
Optional bool parameter. If set to true, the calculations are done with the small rounding bug that existed in Imagick before 3.4.0. If set to false, the calculations should produce the same results as the ImageMagick command-line tools.

Return Values

Returns true on success.

Errors/Exceptions

Throws ImagickException on error.

Changelog

Version Description
PECL imagick 3.4.0 Added the legacy parameter.