I am getting the following exception when trying to load an image:
sun.awt.image.ImageFormatException: Unsupported color conversion request
at sun.awt.image.JPEGImageDecoder.readImage(Native Method)
at sun.awt.image.JPEGImageDecoder.produceImage(JPEGImageDecoder.java:119)
at sun.awt.image.InputStreamImageSource.doFetch(InputStreamImageSource.java:246)
at sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:172)
at sun.awt.image.ImageFetcher.run(ImageFetcher.java:136)
On googling, I found that this is because the color model is CMYK and not RGB. Has anyone faced this before? One option here(
https://coderanch.com/t/339188/Swing-AWT-SWT-JFace/java/Unsupported-Color-Conversion-Request) is to edit this in photoshop to use RGB model. Does anyone else have anything else that I can try ?
Thanks!