package.html 3.6 KB
Newer Older
D
duke 已提交
1 2 3 4
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<!--
5
Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
6 7 8 9
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.

This code is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License version 2 only, as
10
published by the Free Software Foundation.  Oracle designates this
D
duke 已提交
11
particular file as subject to the "Classpath" exception as provided
12
by Oracle in the LICENSE file that accompanied this code.
D
duke 已提交
13 14 15 16 17 18 19 20 21 22 23

This code is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
version 2 for more details (a copy is included in the LICENSE file that
accompanied this code).

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.

24 25 26
Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
or visit www.oracle.com if you need additional information or have any
questions.
D
duke 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
-->

</head>

<body bgcolor="white">

A package of the Java Image I/O API dealing with reading and writing
metadata.

<p>

When reading an image, its per-stream and per-image metadata is made
available as an <code>IIOMetadata</code> object.  The internals of
this object are specific to the plug-in that created it.  Its contents
may be accessed in the form of an XML <code>Document</code>, which is
implemented as a tree of <code>IIOMetadataNode</code> objects.

<p>

When writing an image, its metadata may be set by defining or
modifying an <code>IIOMetadata</code> object.  Such an object may be
obtained from an <code>ImageWriter</code> or
<code>ImageTranscoder</code> (from the
<code>javax.imageio</code> package).  Once such an object has
been obtained, its contents may be set of modified via a
<code>Document</code> consisting of <code>IIOMetadataNode</code>s.
The document format may optionally be described using an
<code>IIOMetadataFormat</code> object.

<p>

The format of the metadata contained in the XML <code>Document</code>
is identified by a string which appears as the root node of the tree
of <code>IIOMetadataNode</code> objects.  This string contains a version
number, e.g. "javax_imageio_jpeg_image_1.0".  Readers and writers may
support multiple versions of the same basic format and the Image I/O
API has methods that allow specifying which version to use by passing
the string to the method/constructor used to obtain an <code>IIOMetadata</code>
object.  In some cases, a more recent version may not be strictly
compatible with a program written expecting an older version (for
an example, see the Native Metadata Format section of the JPEG Metadata
Usage Notes below).

<p>

Plug-ins may choose to support a <A
HREF="doc-files/standard_metadata.html">standard (plug-in neutral)
format</A>.  This format does not provide lossless encoding of
metadata, but allows a portion of the metadata to be accessed in a
generic manner.

<p>

Each of the standard plug-ins supports a so-called "native" metadata
format, which encodes its metadata losslessly:

<ul>
<li>
<A HREF="doc-files/gif_metadata.html">
GIF metadata
</A>

<li>
<A HREF="doc-files/jpeg_metadata.html">
JPEG metadata
</A>

<li>
<A HREF="doc-files/png_metadata.html">
PNG metadata
</A>

<li>
<A HREF="doc-files/bmp_metadata.html">
BMP metadata
</A>

<li>
<A HREF="doc-files/wbmp_metadata.html">
WBMP metadata
</A>

</ul>

@since 1.4

</body>
</html>