parent root
PHP: Gmagick::getimageresolution - Manual

Gmagick::getimageresolution

(PECL gmagick >= Unknown)

Gmagick::getimageresolutionGets the image X and Y resolution

Description

public Gmagick::getimageresolution ( void ) : array

Returns the resolution as an array.

Parameters

This function has no parameters.

Return Values

Returns the resolution as an array.

Errors/Exceptions

Throws an GmagickException on error.

add a noteadd a note

User Contributed Notes 1 note

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

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