PHP 8.3.4 Released!

Imagick::setImageExtent

(PECL imagick 2, PECL imagick 3)

Imagick::setImageExtentУстанавливает размер изображения

Описание

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

Устанавливает размер изображения (то есть столбцы & строки).

Список параметров

columns

rows

Возвращаемые значения

В случае успешной работы возвращает true.

Ошибки

Вызывает ImagickException в случае ошибки.

add a note

User Contributed Notes 2 notes

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

Took me forever to figure this out.
up
2
charles dot p dot hall at gmail dot com
9 years 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