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).
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).