Open In App

PHP | Imagick getColorspace() Function

The Imagick::getColorspace() function is an inbuilt function in PHP which is used to get the global colorspace value of an image.

Syntax:



int Imagick::getColorspace( void )

Parameters: This function doesn’t accept any parameters.

Return Value: This function returns an integer value which can be compared against COLORSPACE constants.



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

Program:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// Get the colorspace
$colorSpace = $imagick->getColorSpace();
  
// Display the colorspace
echo $colorSpace;
  
?>

Output:

0

Reference: https://www.php.net/manual/en/imagick.getcolorspace.php

Article Tags :