Imagick::setColorspace

(Информация о версии неизвестна, возможно, только в SVN)

Imagick::setColorspaceSet colorspace

Описание

bool Imagick::setColorspace ( int $COLORSPACE )

Sets the global colorspace value for the object. Этот метод доступен, если Imagick был скомпилирован с версией ImageMagick 6.5.7 или старше.

Список параметров

COLORSPACE

One of the COLORSPACE constants

Возвращаемые значения

В случае успешной работы возвращает TRUE.

Ошибки

Вызывает ImagickException при ошибке.

Коментарии

Автор:
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(1000100);

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

$image->clear();

?>
2014-12-28 23:20:19
http://php5.kiev.ua/manual/ru/imagick.setcolorspace.html
This method has to be called BEFORE any files are loaded into the Imagick object.

By default, Imagick will incorrectly read CMYK PDFs - it will read each channel as a greyscale page resulting in 4 times the number of pages. By specifying the desired colorspace (usually SRGB) before reading the file, GhostScript will automatically convert it.

<?php
$im 
= new Imagick();

// set the sampling resolution
$im->setResolution(200,200);

// set the desired format
$im->SetColorspace(Imagick::COLORSPACE_SRGB);

$im->readimage($file['tmp_name']);
?>
2020-03-26 19:29:55
http://php5.kiev.ua/manual/ru/imagick.setcolorspace.html

    Поддержать сайт на родительском проекте КГБ