Link

Java JPEG Reader

JDeli includes a JPEG Reader to read JPEG images into Java. The JPEG Decoder is written in 100% Java with no dependencies.

Key information:

  • 100% Java solution. No dlls or dependencies on native code
  • ColorSpace: GrayScale, RGB, CMYK, YCCK images
  • Bits Per Sample: 8, 12-bit precision

Quick start:

JDeli can automatically detect the file type and will use the JPEG File Reader

BufferedImage image = JDeli.read(jpegImageFile);

or

JpegDecoder decoder = new JpegDecoder();
BufferedImage image = decoder.read(jpegData);

See the full Javadoc.