FranckJS
FranckJS

Reputation: 53

ImageIO : cannot read image with CMYK color space

I have a problem to read a specific jpeg image (CMYK color space) which have been created with ImageMagick :

inputStream = new ByteArrayInputStream(bytesImage);
bufferedImage = ImageIO.read(inputStream); 
//IIOException : unsupported image type

I tried to use JAI instead of ImageIO but it still doesn't work :

seekableStream = new ByteArraySeekableStream(bytesImage);
bufferedImage = JAI.create("Stream", seekableStream).getAsBufferedImage();
//Unable to render RenderedOp for this operation

Any idea to solve my problem?

Upvotes: 3

Views: 14575

Answers (2)

Codo
Codo

Reputation: 78865

Reading JPEG images with CMYK colors is rather tricky in Java. But I've posted a complete solution here. It solves the problem of dark colors becoming white as well.

Upvotes: 3

FranckJS
FranckJS

Reputation: 53

Since I have found my image has a CMYK color space, I have found a solution on stackoverflow : Problem reading jpeg image using imageio

Now, the problem is the quality of my resulting image... dark colors became white...

Upvotes: 2

Related Questions