Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
JDK 17 java.desktop.jmod - Desktop Module
JDK 17 java.desktop.jmod is the JMOD file for JDK 17 Desktop module.
JDK 17 Desktop module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\java.desktop.jmod.
JDK 17 Desktop module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Desktop module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\java.desktop.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/imageio/plugins/gif/GIFWritableStreamMetadata.java
/*
* Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package com.sun.imageio.plugins.gif;
/*
* The source for this class was copied verbatim from the source for
* package com.sun.imageio.plugins.gif.GIFImageMetadata and then modified
* to make the class read-write capable.
*/
import javax.imageio.ImageTypeSpecifier;
import javax.imageio.metadata.IIOInvalidTreeException;
import javax.imageio.metadata.IIOMetadata;
import javax.imageio.metadata.IIOMetadataNode;
import javax.imageio.metadata.IIOMetadataFormat;
import javax.imageio.metadata.IIOMetadataFormatImpl;
import org.w3c.dom.Node;
class GIFWritableStreamMetadata extends GIFStreamMetadata {
// package scope
static final String
NATIVE_FORMAT_NAME = "javax_imageio_gif_stream_1.0";
public GIFWritableStreamMetadata() {
super(true,
NATIVE_FORMAT_NAME,
"com.sun.imageio.plugins.gif.GIFStreamMetadataFormat", // XXX J2SE
null, null);
// initialize metadata fields by default values
reset();
}
public boolean isReadOnly() {
return false;
}
public void mergeTree(String formatName, Node root)
throws IIOInvalidTreeException {
if (formatName.equals(nativeMetadataFormatName)) {
if (root == null) {
throw new IllegalArgumentException("root == null!");
}
mergeNativeTree(root);
} else if (formatName.equals
(IIOMetadataFormatImpl.standardMetadataFormatName)) {
if (root == null) {
throw new IllegalArgumentException("root == null!");
}
mergeStandardTree(root);
} else {
throw new IllegalArgumentException("Not a recognized format!");
}
}
public void reset() {
version = null;
logicalScreenWidth = UNDEFINED_INTEGER_VALUE;
logicalScreenHeight = UNDEFINED_INTEGER_VALUE;
colorResolution = UNDEFINED_INTEGER_VALUE;
pixelAspectRatio = 0;
backgroundColorIndex = 0;
sortFlag = false;
globalColorTable = null;
}
protected void mergeNativeTree(Node root) throws IIOInvalidTreeException {
Node node = root;
if (!node.getNodeName().equals(nativeMetadataFormatName)) {
fatal(node, "Root must be " + nativeMetadataFormatName);
}
node = node.getFirstChild();
while (node != null) {
String name = node.getNodeName();
if (name.equals("Version")) {
version = getStringAttribute(node, "value", null,
true, versionStrings);
} else if (name.equals("LogicalScreenDescriptor")) {
/* NB: At the moment we use empty strings to support undefined
* integer values in tree representation.
* We need to add better support for undefined/default values
* later.
*/
logicalScreenWidth = getIntAttribute(node,
"logicalScreenWidth",
UNDEFINED_INTEGER_VALUE,
true,
true, 1, 65535);
logicalScreenHeight = getIntAttribute(node,
"logicalScreenHeight",
UNDEFINED_INTEGER_VALUE,
true,
true, 1, 65535);
colorResolution = getIntAttribute(node,
"colorResolution",
UNDEFINED_INTEGER_VALUE,
true,
true, 1, 8);
pixelAspectRatio = getIntAttribute(node,
"pixelAspectRatio",
0, true,
true, 0, 255);
} else if (name.equals("GlobalColorTable")) {
int sizeOfGlobalColorTable =
getIntAttribute(node, "sizeOfGlobalColorTable",
true, 2, 256);
if (sizeOfGlobalColorTable != 2 &&
sizeOfGlobalColorTable != 4 &&
sizeOfGlobalColorTable != 8 &&
sizeOfGlobalColorTable != 16 &&
sizeOfGlobalColorTable != 32 &&
sizeOfGlobalColorTable != 64 &&
sizeOfGlobalColorTable != 128 &&
sizeOfGlobalColorTable != 256) {
fatal(node,
"Bad value for GlobalColorTable attribute sizeOfGlobalColorTable!");
}
backgroundColorIndex = getIntAttribute(node,
"backgroundColorIndex",
0, true,
true, 0, 255);
sortFlag = getBooleanAttribute(node, "sortFlag", false, true);
globalColorTable = getColorTable(node, "ColorTableEntry",
true, sizeOfGlobalColorTable);
} else {
fatal(node, "Unknown child of root node!");
}
node = node.getNextSibling();
}
}
protected void mergeStandardTree(Node root)
throws IIOInvalidTreeException {
Node node = root;
if (!node.getNodeName()
.equals(IIOMetadataFormatImpl.standardMetadataFormatName)) {
fatal(node, "Root must be " +
IIOMetadataFormatImpl.standardMetadataFormatName);
}
node = node.getFirstChild();
while (node != null) {
String name = node.getNodeName();
if (name.equals("Chroma")) {
Node childNode = node.getFirstChild();
while(childNode != null) {
String childName = childNode.getNodeName();
if (childName.equals("Palette")) {
globalColorTable = getColorTable(childNode,
"PaletteEntry",
false, -1);
} else if (childName.equals("BackgroundIndex")) {
backgroundColorIndex = getIntAttribute(childNode,
"value",
-1, true,
true, 0, 255);
}
childNode = childNode.getNextSibling();
}
} else if (name.equals("Data")) {
Node childNode = node.getFirstChild();
while(childNode != null) {
String childName = childNode.getNodeName();
if (childName.equals("BitsPerSample")) {
colorResolution = getIntAttribute(childNode,
"value",
-1, true,
true, 1, 8);
break;
}
childNode = childNode.getNextSibling();
}
} else if (name.equals("Dimension")) {
Node childNode = node.getFirstChild();
while(childNode != null) {
String childName = childNode.getNodeName();
if (childName.equals("PixelAspectRatio")) {
float aspectRatio = getFloatAttribute(childNode,
"value");
if (aspectRatio == 1.0F) {
pixelAspectRatio = 0;
} else {
int ratio = (int)(aspectRatio*64.0F - 15.0F);
pixelAspectRatio =
Math.max(Math.min(ratio, 255), 0);
}
} else if (childName.equals("HorizontalScreenSize")) {
logicalScreenWidth = getIntAttribute(childNode,
"value",
-1, true,
true, 1, 65535);
} else if (childName.equals("VerticalScreenSize")) {
logicalScreenHeight = getIntAttribute(childNode,
"value",
-1, true,
true, 1, 65535);
}
childNode = childNode.getNextSibling();
}
} else if (name.equals("Document")) {
Node childNode = node.getFirstChild();
while(childNode != null) {
String childName = childNode.getNodeName();
if (childName.equals("FormatVersion")) {
String formatVersion =
getStringAttribute(childNode, "value", null,
true, null);
for (int i = 0; i < versionStrings.length; i++) {
if (formatVersion.equals(versionStrings[i])) {
version = formatVersion;
break;
}
}
break;
}
childNode = childNode.getNextSibling();
}
}
node = node.getNextSibling();
}
}
public void setFromTree(String formatName, Node root)
throws IIOInvalidTreeException
{
reset();
mergeTree(formatName, root);
}
}
⏎ com/sun/imageio/plugins/gif/GIFWritableStreamMetadata.java
Or download all of them as a single archive file:
File name: java.desktop-17.0.5-src.zip File size: 9152233 bytes Release date: 2022-09-13 Download
⇒ JDK 17 java.instrument.jmod - Instrument Module
2023-09-16, ≈438🔥, 0💬
Popular Posts:
JDK 17 jdk.hotspot.agent.jmod is the JMOD file for JDK 17 Hotspot Agent module. JDK 17 Hotspot Agent...
JDK 17 jdk.hotspot.agent.jmod is the JMOD file for JDK 17 Hotspot Agent module. JDK 17 Hotspot Agent...
How to download and install ojdbc5.jar for Oracle 11g R1? ojdbc5.jar for Oracle 11g R1 is a Java 5 J...
How to run "jarsigner" command from JDK tools.jar file? "jarsigner" command allows you to digitally ...
maven-compat-3.5.4.jar is the JAR file for Apache Maven 3.5.4 Compact module. The JAR file name may ...