Wertikal
Wertikal

Reputation: 135

How to get embedded ICC profile of image in java

I am processing jpegs with different ICC profiles. Since I load them the embedded ICC profiles are deleted. But i need them afterwards.

How should I proceed?

Upvotes: 2

Views: 2312

Answers (1)

fish2000
fish2000

Reputation: 4435

For instances of java.awt.BufferedImage, you can use getColorModel():

http://docs.oracle.com/javase/6/docs/api/java/awt/image/BufferedImage.html#getColorModel()

Does that work for you?... or, does your image-loading involve more exotic datastructures?

Upvotes: 1

Related Questions