diff --git a/index.html b/index.html index fde9eac2..ccd34a60 100644 --- a/index.html +++ b/index.html @@ -45,7 +45,7 @@

Latest

-

Latest release is TwelveMonkeys ImageIO 3.6 (July. 10th, 2020).

+

Latest release is TwelveMonkeys ImageIO 3.7.0 (April 24th, 2021).

Release notes.

@@ -53,8 +53,8 @@

TwelveMonkeys ImageIO is a collection of plugins and extensions for Java's ImageIO.

-

These plugins extends the number of image file formats supported in Java, using the javax.imageio.* package. -The main purpose of this project is to provide support for formats not covered by the JRE itself.

+

These plugins extend the number of image file formats supported in Java, using the javax.imageio.* +package. The main purpose of this project is to provide support for formats not covered by the JRE itself.

Support for formats is important, both to be able to read data found "in the wild", as well as to maintain access to data in legacy formats. @@ -63,349 +63,416 @@ The goal is to create a set of efficient and robust ImageIO plug-ins, that can b


-

Features

- -

Mainstream format support

- -

BMP - MS Windows/IBM OS/2 Device Independent Bitmap

- - - -

JPEG

- - - -

JPEG-2000

- - - -

If you are one of the authors, or know one of the authors and/or the current license holders of either the original -jj2000 package or the JAI ImageIO project, please contact me (I've tried to get in touch in various ways, -without success so far).

- -

Alternatively, if you have or know of a JPEG-2000 implementation in Java with a suitable license, get in touch. :-)

- -

PNM - NetPBM Portable Any Map

- - - -

PSD - Adobe Photoshop Document

- - - -

TIFF - Aldus/Adobe Tagged Image File Format

- - - -

Legacy formats

- -

HDR - Radiance High Dynamic Range RGBE Format

- - - -

IFF - Commodore Amiga/Electronic Arts Interchange File Format

- - - -

PCX - ZSoft Paintbrush Format

- - - -

PICT - Apple Mac Paint Picture Format

- - - -

SGI - Silicon Graphics Image Format

- - - -

TGA - Truevision TGA Image Format

- - - -

Icon/other formats

- -

ICNS - Apple Icon Image

- - - -

ICO & CUR - MS Windows Icon and Cursor Formats

- - - -

Thumbs.db - MS Windows Thumbs DB

- - - -

Other formats, using 3rd party libraries

- -

SVG - Scalable Vector Graphics

- - - -

WMF - MS Windows MetaFile

- - - -

-Important note on using Batik: Please read The Apache™ XML Graphics Project - Security, and make sure you use -either version 1.6.1, 1.7.1 or 1.8+. -

+

File formats supported

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PluginFormatDescriptionReadWriteMetadata
Batik + SVG + Scalable Vector Graphics + + --
WMFMS Windows Metafile + + --
+ BMP + + BMP + MS Windows and IBM OS/2 Device Independent Bitmap + + + + + Native + & + Standard +
CURMS Windows Cursor Format + + --
ICOMS Windows Icon Format + + + + -
+ HDR + HDRRadiance High Dynamic Range RGBE Format + + - + Standard +
+ ICNS + ICNSApple Icon Image + + + + -
+ IFF + IFFCommodore Amiga/Electronic Arts Interchange File Format + + + + + Standard +
+ JPEG + + JPEG + Joint Photographers Expert Group + + + + + Native + & + Standard +
JPEG Lossless + + - + Native + & + Standard +
+ PCX + PCXZSoft Paintbrush Format + + - + Standard +
DCXMulti-page PCX fax document + + - + Standard +
+ PICT + PICTApple QuickTime Picture Format + + + + + Standard +
PNTGApple MacPaint Picture Format + + + Standard +
+ PNM + PAMNetPBM Portable Any Map + + + + + Standard +
PBMNetPBM Portable Bit Map + + - + Standard +
PGMNetPBM Portable Grey Map + + - + Standard +
PPMNetPBM Portable Pix Map + + + + + Standard +
PFMPortable Float Map + + - + Standard +
+ PSD + + PSD + Adobe Photoshop Document + + - + Native & + Standard +
PSBAdobe Photoshop Large Document + + - + Native & + Standard +
+ SGI + SGISilicon Graphics Image Format + + - + Standard +
+ TGA + TGATruevision TGA Image Format + + + + + Standard +
ThumbsDBThumbs.dbMS Windows Thumbs DB + + --
+ TIFF + + TIFF + Aldus/Adobe Tagged Image File Format + + + + + Native + & + Standard +
BigTIFF + + - + Native + & + Standard +
+ WebP + + WebP + Google WebP Format + + - + Standard +
XWDXWDX11 Window Dump Format + + - + Standard +

Basic usage

@@ -652,12 +719,12 @@ while (readers.hasNext()) { <dependency> <groupId>com.twelvemonkeys.imageio</groupId> <artifactId>imageio-jpeg</artifactId> - <version>3.6</version> + <version>3.7.0</version> </dependency> <dependency> <groupId>com.twelvemonkeys.imageio</groupId> <artifactId>imageio-tiff</artifactId> - <version>3.6</version> + <version>3.7.0</version> </dependency> </dependencies> @@ -666,70 +733,70 @@ while (readers.hasNext()) {

To depend on the JPEG and TIFF plugin in your IDE or program, add all of the following JARs to your class path:

-
twelvemonkeys-common-lang-3.6.jar
-twelvemonkeys-common-io-3.6.jar
-twelvemonkeys-common-image-3.6.jar
-twelvemonkeys-imageio-core-3.6.jar
-twelvemonkeys-imageio-metadata-3.6.jar
-twelvemonkeys-imageio-jpeg-3.6.jar
-twelvemonkeys-imageio-tiff-3.6.jar
+
twelvemonkeys-common-lang-3.7.0.jar
+twelvemonkeys-common-io-3.7.0.jar
+twelvemonkeys-common-image-3.7.0.jar
+twelvemonkeys-imageio-core-3.7.0.jar
+twelvemonkeys-imageio-metadata-3.7.0.jar
+twelvemonkeys-imageio-jpeg-3.7.0.jar
+twelvemonkeys-imageio-tiff-3.7.0.jar
 

Links to prebuilt binaries

-
Latest version (3.2.x)
+
Latest version

Requires Java 7 or later.

Common dependencies

ImageIO dependencies

ImageIO plugins

ImageIO plugins requiring 3rd party libs

Photoshop Path support for ImageIO

Servlet support

Old version (3.0.x)