略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: Gmagick::setimagecolorspace

2024-04-24

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

add a noteadd a note

User Contributed Notes 1 note

up
0
MPLong
11 years ago
Convert CMYK to RGB:

<?php
$cs
= $im->getimagecolorspace();
if (
$cs == Gmagick::COLORSPACE_CMYK)
{
    
$im->setImageColorspace(Gmagick::COLORSPACE_SRGB);
}
?>

官方地址:https://www.php.net/manual/en/gmagick.setimagecolorspace.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3