WBMP Metadata Format Specification

The XML schema for the native image metadata format is as follows:
<?xml version="1.0" encoding="UTF-8"?><!-- Schema for WBMP native image metadata format. --><xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"            xmlns="http://javax.imageio.plugins"            targetNamespace="http://javax.imageio.plugins">  <!-- WBMP Schema 1.0 root element. -->  <xsd:element name="javax_imageio_wbmp_1.0">    <xsd:sequence>      <!-- WBMP image type -->      <xsd:element name="WBMPType" type="xsd:unsignedInt"/>      <!-- Bitmap width -->      <xsd:element name="Width" type="xsd:unsignedInt"/>      <!-- Bitmap height -->      <xsd:element name="Height" type="xsd:unsignedInt"/>     </xsd:sequence>  </xsd:element> <!-- wbmp_image_1.0 --></xsd:schema>
从以下版本开始:
1.5

Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2018, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.