PHP Velho Oeste 2024

Gmagick::getimageresolution

(PECL gmagick >= Unknown)

Gmagick::getimageresolutionGets the image X and Y resolution

설명

public array Gmagick::getimageresolution ( void )

Returns the resolution as an array.

인수

이 함수는 인수가 없습니다.

반환값

Returns the resolution as an array.

오류/예외

Throws an GmagickException on error.

add a note 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