Hi. Is there a way to detect if a jpg image is progressive? It's throwing an "Unsupported Image Type" exception when I try to read it in from an InputStream. Some investigation revealed it's a progressive JPG and apparently can't be handled:
BufferedImage image = null;
image = ImageIO.read(item.getInputStream());
Also, can the image's color model (RGB, CMYK, etc.) be detected using the JAI API? Thanks.