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