PHP Velho Oeste 2024

Gmagick::getimageresolution

(PECL gmagick >= Unknown)

Gmagick::getimageresolutionGets the image X and Y resolution

Açıklama

public Gmagick::getimageresolution(): array

Returns the resolution as an array.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

Returns the resolution as an array.

Hatalar/İstisnalar

Hata durumunda bir GmagickException istisnası oluşur.

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