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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
/*
* Copyright (c) 2003, 2024, 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 4243044
* @summary This test should show two windows filled with checker
* board pattern. The transparency should runs from left to right from
* total transparent to total opaque.
* @library /java/awt/regtesthelpers
* @build PassFailJFrame
* @run main/manual GrayAlpha
*/
import java.util.List;
import java.awt.Frame;
import java.awt.color.ColorSpace;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.geom.AffineTransform;
import java.awt.image.BufferedImage;
import java.awt.image.ColorModel;
import java.awt.image.ComponentColorModel;
import java.awt.image.DataBuffer;
import java.awt.image.Raster;
import java.awt.image.WritableRaster;
import java.awt.Point;
import java.awt.Panel;
import java.awt.Transparency;
import java.awt.Window;
public class GrayAlpha extends Panel {
private static final String INSTRUCTIONS = """
This test should show two windows filled with checker board
vpattern. The transparency should runs from left to right from
totally transparent to totally opaque. If either the pattern or
the transparency is not shown correctly, click Fail, otherwise
click Pass.""";
BufferedImage bi;
AffineTransform identityTransform = new AffineTransform();
public static void main(String[] args) throws Exception {
PassFailJFrame.builder()
.title("GrayAlpha Instructions")
.instructions(INSTRUCTIONS)
.rows((int)INSTRUCTIONS.lines().count() + 2)
.columns(35)
.testUI(GrayAlpha::createTestUI)
.build()
.awaitAndCheck();
}
public GrayAlpha(int width, int height,
boolean hasAlpha, boolean isAlphaPremultiplied,
boolean useRGB) {
boolean isAlphaPremuliplied = true;
int bands = useRGB ? 3 : 1;
bands = hasAlpha ? bands + 1 : bands;
ColorSpace cs = useRGB ?
ColorSpace.getInstance(ColorSpace.CS_sRGB) :
ColorSpace.getInstance(ColorSpace.CS_GRAY);
int transparency = hasAlpha ?
Transparency.TRANSLUCENT : Transparency.OPAQUE;
int[] bits = new int[bands];
for (int i = 0; i < bands; i++) {
bits[i] = 8;
}
ColorModel cm = new ComponentColorModel(cs,
bits,
hasAlpha,
isAlphaPremultiplied,
transparency,
DataBuffer.TYPE_BYTE);
WritableRaster wr =
Raster.createInterleavedRaster(DataBuffer.TYPE_BYTE,
width, height, bands,
new Point(0, 0));
for (int b = 0; b < bands; b++) {
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
int s;
if (b != bands - 1 || !hasAlpha) {
// Gray band(s), fill with a checkerboard pattern
if (((x / 10) % 2) == ((y / 10) % 2)) {
s = 255;
} else {
s = 0;
}
if (isAlphaPremultiplied) {
int alpha = (x*255)/(width - 1);
s = (s*alpha)/255;
}
} else {
// Alpha band, increase opacity left to right
s = (x*255)/(width - 1);
}
wr.setSample(x, y, b, s);
}
}
}
this.bi = new BufferedImage(cm, wr, isAlphaPremultiplied, null);
}
public Dimension getPreferredSize() {
return new Dimension(bi.getWidth(), bi.getHeight());
}
public void paint(Graphics g) {
if (bi != null) {
((Graphics2D)g).drawImage(bi, 0, 0, null);
}
}
public static Frame makeFrame(String title,
int x, int y, int width, int height,
boolean hasAlpha,
boolean isAlphaPremultiplied,
boolean useRGB) {
Frame f = new Frame(title);
f.add(new GrayAlpha(width, height,
hasAlpha, isAlphaPremultiplied, useRGB));
f.pack();
f.setLocation(x, y);
return f;
}
private static List<Window> createTestUI() {
int width = 200;
int height = 200;
int x = 100;
int y = 100;
Frame f1 = makeFrame("Gray (non-premultiplied)",
x, y, width, height,
true, false, false);
x += width + 20;
Frame f2 = makeFrame("Gray (premultiplied)",
x, y, width, height,
true, true, false);
return List.of(f1, f2);
}
}
|