Yes, I need it in CMYK because the images will be printed so the color space is important. For now I found a dirty workaround which have a second one workaround inside. Speaking short: rendering black text work good so I'm making a black text on a transparent background and then I'm using it as a ...
IMagick is just a shortcut for ImageMagick ;) I used $text->setFillColor(new ImagickPixel('cmyk(255,255,255,255)')); but the text is still semi-transparent. What about good news is that the colors are now not inverted! Maybe something is wrong with merging the text and the image? EDIT: Or maybe, by ...
bg.tif - Base image. Making an empty image using IM cause the copied image to become lighter. Maybe it's a problem with semi-transparency too? u.tif The image which is copied many times and which is a background for the text. Additonally, here are the saving settings: http://i.imgur.com/osebRS1.png ...
Hi, I'm using ImageMagick to copy some images and add text to them. The problem is that I want to make a solid, not transparent white text. What I get is something different. Example: $text->setFillColor(new ImagickPixel('#ffffff')); http://i.imgur.com/i8DIcFJ.png Other example: $text->setFillColor ...