You can read BMP image files in Java with JDeli's BMP Decoder.
Key information:
- Supports Bilevel, Grayscale and RGB images
Quick start:
BufferedImage bmpImage = JDeli.read(bmpImageFile);
or
BmpDecoder decoder = new BmpDecoder();
BufferedImage image = decoder.read(bmpData);