Gmagick::getimageresolution

(PECL gmagick >= Unknown)

Gmagick::getimageresolutionGets the image X and Y resolution

Opis

public Gmagick::getimageresolution ( void ) : array

Returns the resolution as an array.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

Returns the resolution as an array.

Błędy/Wyjątki

Wywołuje wyjątek GmagickException w przypadku błędu.

add a note add a note

User Contributed Notes 1 note

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

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