I want to write an image in java using CMYK color space like this:
BufferedImage image= new BufferedImage(path.getBounds().width,
path.getBounds().height, BufferedImage.TYPE_INT_ARGB);
Graphics2D g2d = image.createGraphics();
color c = new Color(ColorSpaces.getDeviceCMYKColorSpace(), new float[]
{1.0f,1.0f,1.0f,1.0f}, 1.0f)
g2d.setPaint(c);
g2d.fill(path);
g2d.draw(path);
g2d.dispose();
Then I use imageIO to write the image into JPEG, however, the resulted image, when converted to PDF, does no have the CMYK color I provided in the code, instead, it has the following
My questions are:
- can I use BufferedImage to write images with CMYK color space ?
- How do I write image using CMYK color space if the components values are 0,0,0,1.0 and alpha is 1 for example
Please note that I have tried EPS and it worked fine, however, I don't feel comfortable working with EPS at this stage of my project.
Yes, you can. You need to create a
BufferedImage
in the CMYK color space. Then paint on that. You can't use any of the standardBufferedImage.TYPE_*
types, as they are all gray or RGB. See code below.You can write a CMYK JPEG using ImageIO. However, you need to add some extra details to the meta data and massage the pixel data a little to do this, otherwise the image will be written as either RGBA or inverted CMYK. Again, see below for code.
Here's a full, runnable, proof of concept code example:
Note on reading CMYK JPEG images using ImageIO
The above code will write a JPEG image the standard
JPEGImageReader
will not be able to read (other than through thereadRaster()
method).For better/easier CMYK JPEG support, I suggest using the TwelveMonkeys ImageIO JPEG plugin (I'm the author of this plugin).
Small print about CMYK and transparency
You can also create a CMYK color model/image with transparency (alpha channel), like this:
But, unfortunately, the
JPEGImageWriter
can't handle more than 4 channels of data. I get anIndexArrayOutOfBoundsException
in an array that has the comment (IJG is the Independent JPEG Group, who develops libjpeg):So, unfortunately, there's no easy fix for this.