Thursday, October 16, 2025
HomeLanguagesPHP | Imagick transformImageColorspace() Function

PHP | Imagick transformImageColorspace() Function

The Imagick::transformImageColorspace() function is an inbuilt function in PHP which is used to transforms an image into a new colorspace.

Syntax:

bool Imagick::transformImageColorspace( $colorspace )

Parameters: This function accepts single parameter $colorspace which is used to transform the color image.

Return Value: This function returns True on success.

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

Program:




<?php
  
// Create an Imagick object
$imagick = new Imagick(
  
// Transform the image in RGB color space
$imagick->transformimagecolorspace('RGB');
  
// Separate the image channel
$imagick->separateImageChannel(1);
header("Content-Type: image/jpg");
  
// Display the output Image
echo $imagick->getImageBlob();
?>


Output:
transform image color space

Related Articles:

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

RELATED ARTICLES

Most Popular

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