Gmagick::setimagecolorspace

(PECL gmagick >= Unknown)

Gmagick::setimagecolorspaceSets the image colorspace

说明

public Gmagick::setimagecolorspace ( int $colorspace ) : Gmagick

Sets the image colorspace.

参数

colorspace

One of the Colorspace constant (Gmagick::COLORSPACE_*).

返回值

The Gmagick object.

错误/异常

错误时抛出 GmagickException

User Contributed Notes

MPLong 28-Jun-2010 11:24
Convert CMYK to RGB:

<?php
$cs
= $im->getimagecolorspace();
if (
$cs == Gmagick::COLORSPACE_CMYK)
{
    
$im->setImageColorspace(Gmagick::COLORSPACE_SRGB);
}
?>
PHP8中文手册 站长在线 整理 版权归PHP文档组所有