CakeFest 2024: The Official CakePHP Conference

Gmagick::getimageresolution

(PECL gmagick >= Unknown)

Gmagick::getimageresolution画像の X 方向と Y 方向の解像度を取得する

説明

public Gmagick::getimageresolution(): array

解像度を配列で取得します。

パラメータ

この関数にはパラメータはありません。

戻り値

解像度を配列で返します。

エラー / 例外

エラー時に GmagickException をスローします。

add a note

User Contributed Notes 1 note

up
4
Clive Walkden
10 years ago
The array returned is in the format

Array
(
[x] => 300
[y] => 300
)
To Top