ConFoo Montreal 2026: Call for Papers

Voting

: four minus one?
(Example: nine)

The Note You're Voting On

pilot114 at bk dot ru
10 years ago
Simlest way converting from CMYK to RGB:

<?php
if ($jpeg->getImageColorspace() == \Imagick::COLORSPACE_CMYK) {
$jpeg->transformimagecolorspace(\Imagick::COLORSPACE_SRGB);
}
?>

It is pretty work in current stable Image Magick (6.9.0-4).

<< Back to user notes page

To Top