PHP 7.0.6 Released

Imagick::setImageExtent

(PECL imagick 2.0.0)

Imagick::setImageExtentSets the image size

Description

bool Imagick::setImageExtent ( int $columns , int $rows )

Sets the image size (i.e. columns & rows).

Parameters

columns

rows

Return Values

Returns TRUE on success.

Errors/Exceptions

Throws ImagickException on error.

User Contributed Notes

tim at komta dot com
6 years ago
This function actually sets the width and height of the image (in pixels).

Took me forever to figure this out.
charles dot p dot hall at gmail dot com
1 year ago
In other graphics systems I have seen this referred to as Canvas size or re-dimensioning. It changes the dimension of the image without re-scaling. Added pixels appear black, removed pixels are simply cropped away.
To Top