Wednesday, October 15, 2025
HomeLanguagesPHP | Gmagick getimagecolorspace() Function

PHP | Gmagick getimagecolorspace() Function

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

Syntax:

int Gmagick::getimagecolorspace( void )

Parameters: This function doesn’t accept any parameter.

Return Value: This function returns an integer containing the colorspace.

Exceptions: This function throws GmagickException on error.

Below given programs illustrate the Gmagick::getimagecolorspace() function in PHP:

Program 1:




<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('neveropen.png');
  
// Get the image colorspace
$colorspace $gmagick->getimagecolorspace();
echo $colorspace;
?>


Output:

1 // Which is the default colorspace for all objects.

Program 2:




<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('neveropen.png');
  
// Set the colorspace
$gmagick->setimagecolorspace(5);
  
// Get the image colorspace
$colorspace $gmagick->getimagecolorspace();
echo $colorspace;
?>


Output:

5

Reference: https://www.php.net/manual/en/gmagick.getimagecolorspace.php

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11891 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11952 POSTS0 COMMENTS
Shaida Kate Naidoo
6851 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS