Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Inserting a "-write b.png" into my command alters the working colorspace for subsequent operations. Is this a bug? Writing out to a .tif doesn't do this, so that's my work-around. A contrived but simple example:
MIFF can handle a LAB colorspace. PNG is limited to purely RGB colorspace!!!!!
You can force it to save LAB values in a PG image by setiing -set colorspace RGB
BUt PNG will not know (and can't record) that the values stored are actually in LAB colorspace.
anthony wrote:Any particular reason you want to save in LAB colorspace?
I was trying out a lightness adjustment. It worked well for one, HSB looked better for the other. -distort SRT made a mess of edges in Lab. Going from RGB to Lab gave slightly different results than Photoshop, but -set colorspace sRGB generated results way different. I was troubleshooting inserting -write everywhere. I never did corner it, but something seemed off. Between this and curves, and hurried for the holidays, I gave up and Photoshopped the six images. I hoped to help out with another bug, but I'm feeling more frustrated and tired than helpful today.