why don't you tell us what commands you're using..
also when you want help, it helps if you post up the originals and the resulting images so we can see exactly what the results are.
RGB to CMYK (again)
Verify the LCMS delegate library is built into your version of ImageMagick:
Next, verify your JPEG image is in the RGB or sRGB colorspace:
Look at the identify output and see if there already is an existing color profile in your image. If so, you can remove the -profile sRGB.icc option from your command line.
Finally, if the problem persists, its in your profile. ImageMagick does not touch the pixels. Instead it passes them to the LCMS delegate library which transforms them as dictated by the swop.icm profile. You can try another swop profile to see if you get better results.
- identify -list configure
Next, verify your JPEG image is in the RGB or sRGB colorspace:
- identify rgb.jpg
Look at the identify output and see if there already is an existing color profile in your image. If so, you can remove the -profile sRGB.icc option from your command line.
Finally, if the problem persists, its in your profile. ImageMagick does not touch the pixels. Instead it passes them to the LCMS delegate library which transforms them as dictated by the swop.icm profile. You can try another swop profile to see if you get better results.