1N/A<!
DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
1N/ACopyright (c) 2000, 2007, Oracle and/or its affiliates. All rights reserved. 1N/ADO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 1N/AThis code is free software; you can redistribute it and/or modify it 1N/Aunder the terms of the GNU General Public License version 2 only, as 1N/Apublished by the Free Software Foundation. Oracle designates this 1N/Aparticular file as subject to the "Classpath" exception as provided 1N/Aby Oracle in the LICENSE file that accompanied this code. 1N/AThis code is distributed in the hope that it will be useful, but WITHOUT 1N/AANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 1N/AFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License version 2 for more details (a copy is included in the LICENSE file that You should have received a copy of the GNU General Public License version 2 along with this work; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, CA 95054 USA or visit www.sun.com if you need additional information or The main package of the Java Image I/O API.
Many common image I/O operations may be performed using the static
methods of the <
code>ImageIO</
code> class.
This package contains the basic classes and interfaces for describing
the contents of image files, including metadata and thumbnails
(<
code>IIOImage</
code>); for controlling the image reading process
(<
code>ImageReader</
code>, <
code>ImageReadParam</
code>, and
<
code>ImageTypeSpecifier</
code>) and image writing process
(<
code>ImageWriter</
code> and <
code>ImageWriteParam</
code>); for
performing transcoding between formats (<
code>ImageTranscoder</
code>),
and for reporting errors (<
code>IIOException</
code>).
All implementations of
javax.imageio provide the following standard
<
table border=1 align='center' cellpadding=5>
<
th> </
th> <
th>Reading</
th> <
th>Writing</
th>
<
th>Notes</
th> <
th>Metadata</
th>
<
td align='center'>yes</
td>
<
td align='center'>yes</
td>
<
td align='center'>none</
td>
JPEG metadata format</
a></
td>
<
td align='center'>yes</
td>
<
td align='center'>yes</
td>
<
td align='center'>none</
td>
PNG metadata format</
a></
td>
<
td align='center'>yes</
td>
<
td align='center'>yes</
td>
<
td align='center'>none</
td>
BMP metadata format</
a></
td>
<
td align='center'>yes</
td>
<
td align='center'>yes</
td>
<
td align='center'>none</
td>
WBMP metadata format</
a></
td>
<
td align='center'>yes</
td>
<
td align='center'>yes</
td>
<
td align='center'><
a href="#gif_plugin_notes">
GIF plug-in notes</
a></
td>
GIF metadata format</
a></
td>
<
h2> Standard Plug-in Notes</
h2>
<
h3><
a name="gif_plugin_notes">Standard plug-in for GIF image format</
a></
h3>
ImageIO provides <
code>ImageReader</
code> and <
code>ImageWriter</
code>
Graphics Interchange Format (GIF)</
a> image format.
These are the "standard" GIF plug-ins, meaning those that are included in the
JRE, as distinct from those included in standard extensions, or 3rd party
plug-ins. The following notes and metadata specification apply to the
<
h3>Writing GIF images</
h3>
The GIF image writer plug-in guarantees lossless writing for images which meet
the following requirements:
<
li>the number of bands is 1;
<
li>the number of bits per sample is not greater than 8;
<
li>the size of a color component is not greater than 8;
By default the GIF writer plug-in creates version "89a" images. This can be
changed to "87a" by explicitly setting the version in the
GIF Stream Metadata Format Specification</
a>).
The GIF writer plug-in supports the creation of animated GIF images through
the standard sequence writing methods defined in the
<
code>ImageWriter</
code> class.
<!-- TODO: add example here --> A global color table is written to the output stream if one of the
following conditions is met:
<
li> stream metadata containing a GlobalColorTable element is
<
li> a sequence is being written and image metadata containing a
LocalColorTable element is supplied for the first image in the
<
li>image metadata is not supplied or does not contain a LocalColorTable
In the first case the global color table in the stream metadata is
used, in the second the local color table in the image metadata is
used, and in the third a global color table is created from the
ColorModel or SampleModel of the (first) image.
A local color table is written to the output stream only if image
metadata containing a LocalColorTable element is supplied to the
writer, or no image metadata is supplied to the writer and the local
color table which would be generated from the image itself is not
equal to the global color table.
A Graphic Control Extension block is written to the output stream only
if image metadata containing a GraphicControlExtension element is
supplied to the writer, or no image metadata is supplied and the
local color table generated from the image requires a transparent
index. Application, Plain Text, and Comment Extension blocks are
written only if they are supplied to the writer via image metadata.
<!-- writing interlaced images --> The writing of interlaced images can be controlled by the progressive
mode of the provided <
code>ImageWriteParam</
code> instance.
<
code>MODE_DISABLED</
code> then a non-interlaced image will be written. If
progressive mode is <
code>MODE_DEFAULT</
code> then an interlaced image will
be written. If progressive mode is <
code>MODE_COPY_FROM_METADATA</
code>, then
the metadata setting is used (if it is provided, otherwise an interlaced
The GIF image writer plug-in supports setting output stream metadata from
metadata supplied to the writer in either the native GIF stream
javax_imageio_gif_stream_1.0 </
a> or the standard metadata format
javax_imageio_1.0</
a>, and setting
output image metadata from metadata supplied to the writer in either
javax_imageio_gif_image_1.0 </
a> or the standard metadata format
The mapping of standard metadata format to the GIF native stream and
image metadata formats is given in the tables <
aJava<SUP><FONT SIZE="-2">TM</FONT></SUP> Image I/O API Specification Public Draft 2 (specification version 0.5)