image/
.
Content handlers provide a way of interpreting streamed data without knowing what the underlying protocol is about. This package contains content handlers for dealing with the various image formats.
Unlike the standard Java implementations, these use native code to load the images, thus providing a faster implementation and less impact on the JVM memory footprint. The native libraries are sourced from around the internet and have a very thin veneer applied to make them useful with Java.
MIME type | Format | Library Source | Lib Version |
---|---|---|---|
image/bmp | Windows, OS/2 Bitmap | Own | 1.0 |
image/gif | GIF (fixed) | Java's | N/A |
image/jpeg | JPEG | IJC libjpeg | 6b |
image/png | PNG v1.2 | http://www.libpng.org/pub/png/ | 1.0.7 |
image/targa | Targa | Own | 1.0 |
image/tiff | TIFF (all forms) | ftp://ftp.sgi.com/graphics/tiff | 3.4 |
image/x-portable-graymap | X Pixmap | Own | 1.0 |
image/x-portable-pixmap | X Bitmap | Own | 1.0 |