How to convert color space using JMagick?

How to convert color space using the JMagick API?

For example, CMYK → RGB and RGB → CMYK.

+5
source share
1 answer

I have not tested the snippet below, but this might be a good starting point for you.

ImageInfo info = new ImageInfo("myImage.jpg");
boolean isCMYK = info.getColorspace() == ColorspaceType.CMYKColorspace;
if(isCMYK) {
    info.setColorspace(ColorspaceType.RGBColorspace);
}
0
source

All Articles