Gmagick::getimageresolution

(PECL gmagick >= Unknown)

Gmagick::getimageresolutionObtiene la resolución X e Y de la imagen

Descripción

public Gmagick::getimageresolution(): array

Devuelve la resolución como una matriz.

Parámetros

Esta función no tiene parámetros.

Valores devueltos

Devuelve la resolución como una matriz.

Errores/Excepciones

Arroja un GmagickException en caso de error.

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