0N/A/*
2362N/A * Copyright (c) 2001, 2005, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/Apackage com.sun.imageio.plugins.common;
0N/A
0N/Aimport java.util.ListResourceBundle;
0N/A
0N/Apublic class StandardMetadataFormatResources extends ListResourceBundle {
0N/A
0N/A public StandardMetadataFormatResources() {}
0N/A
0N/A protected Object[][] getContents() {
0N/A return new Object[][] {
0N/A
0N/A // Node name, followed by description, or
0N/A // Node name + "/" + AttributeName, followed by description
0N/A
0N/A { "Chroma", "Chroma (color) information" },
0N/A
0N/A { "ColorSpaceType", "The raw color space of the image" },
0N/A
0N/A { "NumChannels",
0N/A "The number of channels in the raw image, including alpha" },
0N/A
0N/A { "Gamma", "The image gamma" },
0N/A
0N/A { "BlackIsZero",
0N/A "True if smaller values represent darker shades"},
0N/A
0N/A { "Palette", "Palette-color information" },
0N/A
0N/A { "PaletteEntry", "A palette entry" },
0N/A { "PaletteEntry/index", "The index of the palette entry" },
0N/A { "PaletteEntry/red", "The red value for the palette entry" },
0N/A { "PaletteEntry/green", "The green value for the palette entry" },
0N/A { "PaletteEntry/blue", "The blue value for the palette entry" },
0N/A { "PaletteEntry/alpha", "The alpha value for the palette entry" },
0N/A
0N/A { "BackgroundIndex", "A palette index to be used as a background" },
0N/A
0N/A { "BackgroundColor", "An RGB triple to be used as a background" },
0N/A { "BackgroundColor/red", "The red background value" },
0N/A { "BackgroundColor/green", "The green background value" },
0N/A { "BackgroundColor/blue", "The blue background value" },
0N/A
0N/A { "Compression", "Compression information" },
0N/A
0N/A { "CompressionTypeName", "The name of the compression scheme in use" },
0N/A
0N/A { "Lossless",
0N/A "True if the compression scheme is lossless" },
0N/A
0N/A { "BitRate", "The estimated bit rate of the compression scheme" },
0N/A
0N/A { "NumProgressiveScans",
0N/A "The number of progressive scans used in the image encoding"},
0N/A
0N/A { "Data", "Information on the image layout" },
0N/A
0N/A { "PlanarConfiguration",
0N/A "The organization of image samples in the stream" },
0N/A
0N/A { "SampleFormat", "The numeric format of image samples" },
0N/A
0N/A { "BitsPerSample", "The number of bits per sample"},
0N/A { "BitsPerSample/value",
0N/A "A list of integers, one per channel" },
0N/A
0N/A { "SignificantBitsPerSample",
0N/A "The number of significant bits per sample"},
0N/A { "SignificantBitsPerSample/value",
0N/A "A list of integers, one per channel" },
0N/A
0N/A { "SampleMSB",
0N/A "The position of the most significant bit of each sample"},
0N/A { "SampleMSB/value",
0N/A "A list of integers, one per channel" },
0N/A
0N/A { "Dimension", "Dimension information" },
0N/A
0N/A { "PixelAspectRatio", "The width of a pixel divided by its height" },
0N/A
0N/A { "ImageOrientation", "The desired orientation of the image in terms of flips and counter-clockwise rotations" },
0N/A
0N/A { "HorizontalPixelSize",
0N/A "The width of a pixel, in millimeters, as it should be rendered on media" },
0N/A
0N/A { "VerticalPixelSize",
0N/A "The height of a pixel, in millimeters, as it should be rendered on media" },
0N/A
0N/A { "HorizontalPhysicalPixelSpacing",
0N/A "The horizontal distance in the subject of the image, in millimeters, represented by one pixel at the center of the image" },
0N/A
0N/A { "VerticalPhysicalPixelSpacing",
0N/A "The vertical distance in the subject of the image, in millimeters, represented by one pixel at the center of the image" },
0N/A
0N/A { "HorizontalPosition",
0N/A "The horizontal position, in millimeters, where the image should be rendered on media " },
0N/A
0N/A { "VerticalPosition",
0N/A "The vertical position, in millimeters, where the image should be rendered on media " },
0N/A
0N/A { "HorizontalPixelOffset",
0N/A "The horizonal position, in pixels, where the image should be rendered onto a raster display" },
0N/A
0N/A { "VerticalPixelOffset",
0N/A "The vertical position, in pixels, where the image should be rendered onto a raster display" },
0N/A
0N/A { "HorizontalScreenSize",
0N/A "The width, in pixels, of the raster display into which the image should be rendered" },
0N/A
0N/A { "VerticalScreenSize",
0N/A "The height, in pixels, of the raster display into which the image should be rendered" },
0N/A
0N/A { "Document", "Document information" },
0N/A
0N/A { "FormatVersion",
0N/A "The version of the format used by the stream" },
0N/A
0N/A { "SubimageInterpretation",
0N/A "The interpretation of this image in relation to the other images stored in the same stream" },
0N/A
0N/A { "ImageCreationTime", "The time of image creation" },
0N/A { "ImageCreationTime/year",
0N/A "The full year (e.g., 1967, not 67)" },
0N/A { "ImageCreationTime/month",
0N/A "The month, with January = 1" },
0N/A { "ImageCreationTime/day",
0N/A "The day of the month" },
0N/A { "ImageCreationTime/hour",
0N/A "The hour from 0 to 23" },
0N/A { "ImageCreationTime/minute",
0N/A "The minute from 0 to 59" },
0N/A { "ImageCreationTime/second",
0N/A "The second from 0 to 60 (60 = leap second)" },
0N/A
0N/A { "ImageModificationTime", "The time of the last image modification" },
0N/A { "ImageModificationTime/year",
0N/A "The full year (e.g., 1967, not 67)" },
0N/A { "ImageModificationTime/month",
0N/A "The month, with January = 1" },
0N/A { "ImageModificationTime/day",
0N/A "The day of the month" },
0N/A { "ImageModificationTime/hour",
0N/A "The hour from 0 to 23" },
0N/A { "ImageModificationTime/minute",
0N/A "The minute from 0 to 59" },
0N/A { "ImageModificationTime/second",
0N/A "The second from 0 to 60 (60 = leap second)" },
0N/A
0N/A { "Text", "Text information" },
0N/A
0N/A { "TextEntry", "A text entry"},
0N/A { "TextEntry/keyword", "A keyword associated with the text entry" },
0N/A { "TextEntry/value", "the text entry" },
0N/A { "TextEntry/language", "The language of the text" },
0N/A { "TextEntry/encoding", "The encoding of the text" },
0N/A { "TextEntry/compression", "The method used to compress the text" },
0N/A
0N/A { "Transparency", "Transparency information" },
0N/A
0N/A { "Alpha", "The type of alpha information contained in the image" },
0N/A
0N/A { "TransparentIndex", "A palette index to be treated as transparent" },
0N/A
0N/A { "TransparentColor", "An RGB color to be treated as transparent" },
0N/A { "TransparentColor/red",
0N/A "The red channel of the transparent color" },
0N/A { "TransparentColor/green",
0N/A "The green channel of the transparent color" },
0N/A { "TransparentColor/blue",
0N/A "The blue channel of the transparent color" },
0N/A
0N/A { "TileTransparencies", "A list of completely transparent tiles" },
0N/A
0N/A { "TransparentTile", "The index of a completely transparent tile" },
0N/A { "TransparentTile/x", "The tile's X index" },
0N/A { "TransparentTile/y", "The tile's Y index" },
0N/A
0N/A { "TileOpacities", "A list of completely opaque tiles" },
0N/A
0N/A { "OpaqueTile", "The index of a completely opaque tile" },
0N/A { "OpaqueTile/x", "The tile's X index" },
0N/A { "OpaqueTile/y", "The tile's Y index" },
0N/A
0N/A };
0N/A }
0N/A}