Saturday, November 22, 2025
HomeLanguagesPHP | Imagick getImageColorspace() Function

PHP | Imagick getImageColorspace() Function

The Imagick::getImageColorspace() function is an inbuilt function in PHP which is used to get the colorspace of the image. The color space is a mathematical model which describes the range of colors as tuples of numbers, typically as 3 or 4 values or color components(RGB).

Syntax:

int Imagick::getImageColorspace( void )

Parameters: This function does not accepts any parameters.
Return Value: This function returns an integer value which can be compared against COLORSPACE constants.

Errors/Exceptions: It throws an ImagickException on error.

Below program illustrates the Imagick::getImageColorspace() function in PHP:

Program:




<?php 
// require_once('path/vendor/autoload.php'); 
   
// Create a new Imagick Object
$image = new Imagick(
   
// getImageColorspace function
$size = $image->getImageColorspace();
  
// Display the colorspace
print_r($size);
?>


Output:

13

Related Articles:

Reference: http://php.net/manual/en/imagick.getimagecolorspace.php

RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6784 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6848 POSTS0 COMMENTS