Open In App

PHP | Imagick getColorspace() Function

Last Updated : 07 Nov, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
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
<?php

// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');

// Get the colorspace
$colorSpace = $imagick->getColorSpace();

// Display the colorspace
echo $colorSpace;

?>
Output:
0
Reference: https://www.php.net/manual/en/imagick.getcolorspace.php

Similar Reads