parent root
PHP: Imagick::setColorspace - Manual

Imagick::setColorspace

(No version information available, might only be in Git)

Imagick::setColorspaceSet colorspace

Description

Imagick::setColorspace ( int $COLORSPACE ) : bool

Sets the global colorspace value for the object. This method is available if Imagick has been compiled against ImageMagick version 6.5.7 or newer.

Parameters

COLORSPACE

One of the COLORSPACE constants

Return Values

Returns TRUE on success.

Errors/Exceptions

Throws ImagickException on error.

add a noteadd a note

User Contributed Notes 1 note

up
0
T
4 years ago
Right now this function doesn't appear to do anything, ref: http://stackoverflow.com/q/10739822/2685496

As mentioned in the answer, modulateImage works fine as a replacement for converting to gray scale.

<?php

$image
= new Imagick("input.jpg");

$image->modulateImage(100, 0, 100);

$image->writeImage("output.jpg");

$image->clear();

?>
To Top
parent root