1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
/*
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
* 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
* published by the Free Software Foundation.
*
* 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.
*
* 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.
*/
/*
* @test
* @bug 6686236
* @summary Checks whether GIF native metadata format returns appropriate max
* value that could be set for characterCellWidth and
* characterCellHeight attributes of PlainTextExtension node. Besides,
* the test also checks whether IIOInvalidTreeException is thrown when
* incorrect value is set on these two attributes.
* @run main GIFCharCellDimensionTest
*/
import javax.imageio.ImageIO;
import javax.imageio.ImageWriter;
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 java.util.Iterator;
import java.awt.image.BufferedImage;
import static java.awt.image.BufferedImage.TYPE_4BYTE_ABGR;
public class GIFCharCellDimensionTest {
// GIF image metadata and native metadata format.
private static IIOMetadata imageMetadata = null;
private static IIOMetadataFormat metadataFormat = null;
private static String formatName = null;
private static void initializeTest() {
// Initialize the test case by querying GIF image writer for default
// image metadata and native metadata format.
ImageWriter gifWriter = null;
Iterator<ImageWriter> iterGifWriter = null;
BufferedImage bufImage = null;
ImageTypeSpecifier imageType = null;
try {
iterGifWriter = ImageIO.getImageWritersBySuffix("GIF");
if (iterGifWriter.hasNext()) {
gifWriter = iterGifWriter.next();
bufImage = new BufferedImage(32, 32, TYPE_4BYTE_ABGR);
// Get GIF image metadata
imageMetadata = gifWriter.getDefaultImageMetadata(
ImageTypeSpecifier.createFromRenderedImage(bufImage),
gifWriter.getDefaultWriteParam());
if (imageMetadata == null) {
reportException("Test Failed. Could not get image" +
" metadata.");
}
// Get GIF native metadata format.
formatName = imageMetadata.getNativeMetadataFormatName();
metadataFormat = imageMetadata.getMetadataFormat(formatName);
if (metadataFormat == null) {
reportException("Test Failed. Could not get native" +
" metadata format.");
}
} else {
reportException("Test Failed. No GIF image writer found.");
}
} finally {
gifWriter.dispose();
}
}
private static IIOMetadataNode createPlainTextExtensionNode(String value) {
// Create a PlainTextExtensionNode with required values
IIOMetadataNode rootNode = null;
if (imageMetadata != null && formatName != null) {
IIOMetadataNode plainTextNode = null;
rootNode = new IIOMetadataNode(formatName);
plainTextNode = new IIOMetadataNode("PlainTextExtension");
plainTextNode.setAttribute("textGridLeft", "0");
plainTextNode.setAttribute("textGridTop", "0");
plainTextNode.setAttribute("textGridWidth", "32");
plainTextNode.setAttribute("textGridHeight", "32");
// Set required values for cell width and cell height
plainTextNode.setAttribute("characterCellWidth", value);
plainTextNode.setAttribute("characterCellHeight", value);
plainTextNode.setAttribute("textForegroundColor", "0");
plainTextNode.setAttribute("textBackgroundColor", "1");
rootNode.appendChild(plainTextNode);
} else {
reportException("Test Failed. Un-initialized image metadata.");
}
return rootNode;
}
private static void testCharacterCellDimensions() {
if (imageMetadata != null && metadataFormat != null) {
// Get max permissible value that could be set on characterCellWidth
// and characterCellHeight attributes of plain text node.
String cellWidth = metadataFormat.getAttributeMaxValue(
"PlainTextExtension",
"characterCellWidth");
String cellHeight = metadataFormat.getAttributeMaxValue(
"PlainTextExtension",
"characterCellHeight");
// Test fails if the max permissible value is larger than 255
int maxCharCellWidth = Integer.parseInt(cellWidth);
int maxCharCellHeight = Integer.parseInt(cellHeight);
if (maxCharCellWidth > 255 || maxCharCellHeight > 255) {
reportException("Test Failed. Invalid max range for" +
" character cell width or character cell height.");
}
try {
// Merge a plain text node with incorrect value set on
// characterCellWidth and characterCellHeight attributes.
IIOMetadataNode root = createPlainTextExtensionNode("256");
imageMetadata.setFromTree(formatName, root);
} catch (IIOInvalidTreeException exception) {
// No-op. Expected exception was thrown.
}
} else {
reportException("Test Failed. Un-initialized image metadata or" +
" metadata format.");
}
}
private static void reportException(String message) {
// Report an exception with the required message.
throw new RuntimeException(message);
}
public static void main(String[] args) {
// Initialize the test
initializeTest();
// Test plain text extension node.
testCharacterCellDimensions();
}
}
|