author | serb |
Thu, 31 May 2018 09:52:32 -0700 | |
changeset 50358 | 1ba28f0dbc33 |
parent 48264 | efda6932a433 |
child 58595 | fa9f28a0e175 |
permissions | -rw-r--r-- |
48264
efda6932a433
8182410: missing 'title' in api/javax/swing/plaf/synth/doc-files/componentProperties.html
serb
parents:
47216
diff
changeset
|
1 |
<!doctype html> |
efda6932a433
8182410: missing 'title' in api/javax/swing/plaf/synth/doc-files/componentProperties.html
serb
parents:
47216
diff
changeset
|
2 |
<html lang="en"> |
2 | 3 |
<head> |
48264
efda6932a433
8182410: missing 'title' in api/javax/swing/plaf/synth/doc-files/componentProperties.html
serb
parents:
47216
diff
changeset
|
4 |
<meta charset="utf-8"/> |
efda6932a433
8182410: missing 'title' in api/javax/swing/plaf/synth/doc-files/componentProperties.html
serb
parents:
47216
diff
changeset
|
5 |
<title>BMP Metadata Format Specification</title> |
efda6932a433
8182410: missing 'title' in api/javax/swing/plaf/synth/doc-files/componentProperties.html
serb
parents:
47216
diff
changeset
|
6 |
</head> |
2 | 7 |
<!-- |
50358 | 8 |
Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved. |
2 | 9 |
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
10 |
||
11 |
This code is free software; you can redistribute it and/or modify it |
|
12 |
under the terms of the GNU General Public License version 2 only, as |
|
5506 | 13 |
published by the Free Software Foundation. Oracle designates this |
2 | 14 |
particular file as subject to the "Classpath" exception as provided |
5506 | 15 |
by Oracle in the LICENSE file that accompanied this code. |
2 | 16 |
|
17 |
This code is distributed in the hope that it will be useful, but WITHOUT |
|
18 |
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
19 |
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
20 |
version 2 for more details (a copy is included in the LICENSE file that |
|
21 |
accompanied this code). |
|
22 |
||
23 |
You should have received a copy of the GNU General Public License version |
|
24 |
2 along with this work; if not, write to the Free Software Foundation, |
|
25 |
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
26 |
||
5551
327690766109
6956202: Fix a few missed rebranding issues, please contact lines etc.
ohair
parents:
5506
diff
changeset
|
27 |
Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
327690766109
6956202: Fix a few missed rebranding issues, please contact lines etc.
ohair
parents:
5506
diff
changeset
|
28 |
or visit www.oracle.com if you need additional information or have any |
327690766109
6956202: Fix a few missed rebranding issues, please contact lines etc.
ohair
parents:
5506
diff
changeset
|
29 |
questions. |
2 | 30 |
--> |
31 |
||
32 |
<body> |
|
50358 | 33 |
<main role="main"> |
48264
efda6932a433
8182410: missing 'title' in api/javax/swing/plaf/synth/doc-files/componentProperties.html
serb
parents:
47216
diff
changeset
|
34 |
<h1>BMP Metadata Format Specification</h1> |
2 | 35 |
|
36 |
The XML schema for the native image metadata format is as follows: |
|
37 |
||
38 |
<pre> |
|
39 |
<?xml version="1.0" encoding="UTF-8"?> |
|
40 |
||
41 |
<!-- Schema for BMP native image metadata format. --> |
|
42 |
||
43 |
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" |
|
44 |
xmlns="http://javax.imageio.plugins" |
|
45 |
targetNamespace="http://javax.imageio.plugins"> |
|
46 |
||
47 |
<!-- Coordinates of a point in the CIE XYZ color space. --> |
|
48 |
<xsd:complexType name="XYZPoint"> |
|
49 |
<xsd:sequence> |
|
50 |
<xsd:element name="X" type="xsd:double"/> |
|
51 |
<xsd:element name="Y" type="xsd:double"/> |
|
52 |
<xsd:element name="Z" type="xsd:double"/> |
|
53 |
</xsd:sequence> |
|
54 |
</xsd:complexType> |
|
55 |
||
56 |
<!-- BMP Schema 1.0 root element. --> |
|
57 |
<xsd:element name="javax_imageio_bmp_1.0"> |
|
58 |
<xsd:complexType> |
|
59 |
<xsd:sequence> |
|
60 |
||
61 |
<!-- BMP version string --> |
|
62 |
<xsd:element name="BMPVersion" type="xsd:string"/> |
|
63 |
||
64 |
<!-- Bitmap width --> |
|
65 |
<xsd:element name="Width" type="xsd:unsignedInt"/> |
|
66 |
||
67 |
<!-- Bitmap height --> |
|
68 |
<xsd:element name="Height" type="xsd:unsignedInt"/> |
|
69 |
||
70 |
<!-- Number of bits per pixel --> |
|
71 |
<xsd:element name="BitsPerPixel" type="xsd:unsignedShort"/> |
|
72 |
||
73 |
<!-- Compression type --> |
|
74 |
<xsd:element name="Compression" type="xsd:unsignedInt" minOccurs="0"/> |
|
75 |
||
76 |
<!-- Image size in bytes --> |
|
77 |
<xsd:element name="ImageSize" type="xsd:unsignedInt" minOccurs="0"/> |
|
78 |
||
79 |
<!-- Resolution in pixels per unit distance --> |
|
80 |
<xsd:element name="PixelsPerMeter" minOccurs="0"> |
|
81 |
<xsd:complexType> |
|
82 |
<xsd:sequence> |
|
83 |
<xsd:element name="X" type="xsd:unsignedInt"/> |
|
84 |
<xsd:element name="Y" type="xsd:unsignedInt"/> |
|
85 |
</xsd:sequence> |
|
86 |
</xsd:complexType> |
|
87 |
</xsd:element> <!-- PixelsPerMeter --> |
|
88 |
||
89 |
||
90 |
<!-- Number of color indexes in the color table actually used --> |
|
91 |
<xsd:element name="ColorsUsed" type="xsd:unsignedInt" minOccurs="0"/> |
|
92 |
||
93 |
<!-- Number of color indexes considered important for display --> |
|
94 |
<xsd:element name="ColorsImportant" type="xsd:unsignedInt" |
|
95 |
minOccurs="0"/> |
|
96 |
||
97 |
<!-- Color masks; present for BI_BITFIELDS compression only --> |
|
98 |
<xsd:element name="Mask" minOccurs="0"> |
|
99 |
<xsd:complexType> |
|
100 |
<xsd:sequence> |
|
101 |
<xsd:element name="Red" type="xsd:unsignedInt"/> |
|
102 |
<xsd:element name="Green" type="xsd:unsignedInt"/> |
|
103 |
<xsd:element name="Blue" type="xsd:unsignedInt"/> |
|
104 |
<xsd:element name="Alpha" type="xsd:unsignedInt" minOccurs="0"/> |
|
105 |
</xsd:sequence> |
|
106 |
</xsd:complexType> |
|
107 |
</xsd:element> |
|
108 |
||
109 |
<!-- Color space --> |
|
48264
efda6932a433
8182410: missing 'title' in api/javax/swing/plaf/synth/doc-files/componentProperties.html
serb
parents:
47216
diff
changeset
|
110 |
<xsd:element name="ColorSpaceType" type="xsd:unsignedInt" |
2 | 111 |
minOccurs="0"/> |
112 |
||
113 |
<!-- CIE XYZ for the LCS_CALIBRATED_RGB color space --> |
|
114 |
<xsd:element name="CIEXYZEndpoints" minOccurs="0"> |
|
115 |
<xsd:complexType> |
|
116 |
<xsd:sequence> |
|
117 |
<xsd:element name="Red" type="XYZPoint"/> |
|
118 |
<xsd:element name="Green" type="XYZPoint"/> |
|
119 |
<xsd:element name="Blue" type="XYZPoint"/> |
|
120 |
</xsd:sequence> |
|
121 |
</xsd:complexType> |
|
122 |
</xsd:element> |
|
123 |
||
124 |
<!-- Gamma values for the LCS_CALIBRATED_RGB color space --> |
|
125 |
<xsd:element name="Gamma" minOccurs="0"> |
|
126 |
<xsd:complexType> |
|
127 |
<xsd:sequence> |
|
128 |
<xsd:element name="Red" type="xsd:unsignedInt"/> |
|
129 |
<xsd:element name="Green" type="xsd:unsignedInt"/> |
|
130 |
<xsd:element name="Blue" type="xsd:unsignedInt"/> |
|
131 |
</xsd:sequence> |
|
132 |
</xsd:complexType> |
|
133 |
</xsd:element> |
|
134 |
||
135 |
<!-- Rendering intent --> |
|
136 |
<xsd:element name="Intent" type="xsd:unsignedInt" minOccurs="0"/> |
|
137 |
||
138 |
<!-- The image colormap --> |
|
139 |
<xsd:element name="Palette" minOccurs="0"> |
|
140 |
<xsd:complexType> |
|
141 |
<xsd:sequence> |
|
142 |
<xsd:element name="PaletteEntry"> |
|
143 |
<xsd:complexType> |
|
144 |
<xsd:sequence> |
|
145 |
<xsd:element name="Red" type="xsd:unsignedByte"/> |
|
146 |
<xsd:element name="Green" type="xsd:unsignedByte"/> |
|
147 |
<xsd:element name="Blue" type="xsd:unsignedByte"/> |
|
148 |
<xsd:element name="Alpha" type="xsd:unsignedByte" minOccurs="0"/> |
|
149 |
</xsd:sequence> |
|
150 |
</xsd:complexType> |
|
151 |
</xsd:element> |
|
152 |
</xsd:sequence> |
|
153 |
</xsd:complexType> |
|
154 |
</xsd:element> |
|
155 |
||
156 |
</xsd:sequence> |
|
157 |
</xsd:complexType> |
|
158 |
</xsd:element> <!-- bmp_image_1.0 --> |
|
159 |
||
160 |
</xsd:schema> |
|
161 |
</pre> |
|
162 |
||
163 |
@since 1.5 |
|
50358 | 164 |
</main> |
2 | 165 |
</body> |