Imagick::getImageProfiles

(PECL imagick 2.0.0) Returns the image profiles array Imagick::getImageProfiles ([ string $pattern = "*" [, bool $only_names = true ]] ) Returns all associated profiles that match the pattern. If TRUE is passed as second parameter only the profile names are returned. This method is available if Imagick has been compiled against ImageMagick version 6.3.6 or newer. Parameters: pattern

Imagick::getImageProfile

(PECL imagick 2.0.0) Returns the named image profile string Imagick::getImageProfile ( string $name ) Returns the named image profile. Parameters: name The name of the profile to return. Returns: Returns a string containing the image profile. Exception: Throws ImagickException on error.

Imagick::getImagePixelColor

(PECL imagick 2.0.0) Returns the color of the specified pixel ImagickPixel Imagick::getImagePixelColor ( int $x, int $y ) Returns the color of the specified pixel. Parameters: x The x-coordinate of the pixel y The y-coordinate of the pixel Returns: Returns an ImagickPixel instance for the color at the coordinat

Imagick::getImagePage

(PECL imagick 2.0.0) Returns the page geometry array Imagick::getImagePage ( void ) Returns the page geometry associated with the image in an array with the keys "width", "height", "x", and "y". Returns: Returns the page geometry associated with the image in an array with the keys "width", "height", "x", and "y". Exception: Throws ImagickException on error.

Imagick::getImageOrientation

(PECL imagick 2.0.0) Gets the image orientation int Imagick::getImageOrientation ( void ) Gets the image orientation. The return value is one of the orientation constants. Returns: Returns an int on success. Exception: Throws ImagickException on error.

Imagick::getImageMimeType

(No version information available, might only be in Git) Description public string Imagick::getImageMimeType ( void ) Returns the image mime-type. Returns:

Imagick::getImageMatteColor

(PECL imagick 2.0.0) Returns the image matte color ImagickPixel Imagick::getImageMatteColor ( void ) Returns the image matte color. Returns: Returns ImagickPixel object on success. Exception: Throws ImagickException on error.

Imagick::getImageMatte

(PECL imagick 2.0.0) Return if the image has a matte channel bool Imagick::getImageMatte ( void ) Returns TRUE if the image has a matte channel otherwise false. This method is available if Imagick has been compiled against ImageMagick version 6.2.9 or newer. Returns: Returns TRUE on success or FALSE on failure.

Imagick::getImageMagickLicense

(PECL imagick 2.0.0) Returns a string containing the ImageMagick license string Imagick::getImageMagickLicense ( void ) Returns a string containing the ImageMagick license Returns: Returns a string containing the ImageMagick license.

Imagick::getImageLength

(PECL imagick 2.0.0) Returns the image length in bytes int Imagick::getImageLength ( void ) Returns the image length in bytes Returns: Returns an int containing the current image size. Examples: Using Imagick::getImageLength() : Getting image length in bytes <?php $image = new Imagick('test.jpg'); echo $image->get