|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-02-28 07:10 UTC] mkoppanen@php.net
[2010-05-20 14:00 UTC] lars dot strojny at jarlssen dot de
[2010-05-20 14:03 UTC] lars dot strojny at jarlssen dot de
[2010-05-21 04:18 UTC] mkoppanen@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 17 10:00:01 2025 UTC |
Description: ------------ When using setImageColorspace to convert RGB image to CMYK, it looks as if it creates a negative image, i've tried various RGB images, but seems to invert them all Reproduce code: --------------- $im = new Imagick('Waterfall.jpg'); $im->setImageColorspace(Imagick::COLORSPACE_CMYK); header('Content-Type: image/jpg'); echo $im; Expected result: ---------------- To reproduce the same image but in CMYK format Actual result: -------------- Creates a negative of the original image