Open In App

PHP | Imagick getColorspace() Function

Improve
Improve
Like Article
Like
Save
Share
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
  
// 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


Last Updated : 07 Nov, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads