jdk/src/java.desktop/share/classes/javax/imageio/metadata/doc-files/wbmp_metadata.html
changeset 25859 3317bb8137f4
parent 5551 327690766109
equal deleted inserted replaced
25858:836adbf7a2cd 25859:3317bb8137f4
       
     1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
       
     2 <html>
       
     3 <head>
       
     4 <!--
       
     5 Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
       
     6 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     7 
       
     8 This code is free software; you can redistribute it and/or modify it
       
     9 under the terms of the GNU General Public License version 2 only, as
       
    10 published by the Free Software Foundation.  Oracle designates this
       
    11 particular file as subject to the "Classpath" exception as provided
       
    12 by Oracle in the LICENSE file that accompanied this code.
       
    13 
       
    14 This code is distributed in the hope that it will be useful, but WITHOUT
       
    15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    16 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    17 version 2 for more details (a copy is included in the LICENSE file that
       
    18 accompanied this code).
       
    19 
       
    20 You should have received a copy of the GNU General Public License version
       
    21 2 along with this work; if not, write to the Free Software Foundation,
       
    22 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    23 
       
    24 Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    25 or visit www.oracle.com if you need additional information or have any
       
    26 questions.
       
    27 -->
       
    28 
       
    29 <title>WBMP Metadata Format Specification</title>
       
    30 </head>
       
    31 
       
    32 <body>
       
    33 <center><h1>
       
    34 WBMP Metadata Format Specification
       
    35 </h1></center>
       
    36 
       
    37 The XML schema for the native image metadata format is as follows:
       
    38 
       
    39 <pre>
       
    40 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
       
    41 &lt;!-- Schema for WBMP native image metadata format. --&gt;
       
    42 
       
    43 &lt;xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
       
    44             xmlns="http://javax.imageio.plugins"
       
    45             targetNamespace="http://javax.imageio.plugins"&gt;
       
    46 
       
    47   &lt;!-- WBMP Schema 1.0 root element. --&gt;
       
    48   &lt;xsd:element name="javax_imageio_wbmp_1.0"&gt;
       
    49     &lt;xsd:sequence&gt;
       
    50 
       
    51       &lt;!-- WBMP image type --&gt;
       
    52       &lt;xsd:element name="WBMPType" type="xsd:unsignedInt"/&gt;
       
    53 
       
    54       &lt;!-- Bitmap width --&gt;
       
    55       &lt;xsd:element name="Width" type="xsd:unsignedInt"/&gt;
       
    56 
       
    57       &lt;!-- Bitmap height --&gt;
       
    58       &lt;xsd:element name="Height" type="xsd:unsignedInt"/&gt;
       
    59 
       
    60      &lt;/xsd:sequence&gt;
       
    61   &lt;/xsd:element&gt; &lt;!-- wbmp_image_1.0 --&gt;
       
    62 
       
    63 &lt;/xsd:schema&gt;
       
    64 </pre>
       
    65 
       
    66 @since 1.5
       
    67 
       
    68 </body>