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
|
/*
* Copyright (c) 2016, 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 8151269
* @author a.stepanov
* @summary Multiresolution image: check that the base resolution variant
* source is passed to the corresponding ImageConsumer
* @run main MultiresolutionSourceTest
*/
import java.awt.*;
import java.awt.image.*;
public class MultiresolutionSourceTest {
private static class Checker implements ImageConsumer {
private final int refW, refH, refType;
private final boolean refHasAlpha;
private final Color refColor;
public Checker(int w,
int h,
Color c,
boolean hasAlpha,
int transferType) {
refW = w;
refH = h;
refColor = c;
refHasAlpha = hasAlpha;
refType = transferType;
}
@Override
public void imageComplete(int status) {}
@Override
public void setColorModel(ColorModel model) {
boolean a = model.hasAlpha();
if (a != refHasAlpha) {
throw new RuntimeException("invalid hasAlpha: " + a);
}
int tt = model.getTransferType();
if (tt != refType) {
throw new RuntimeException("invalid transfer type: " + tt);
}
}
@Override
public void setDimensions(int w, int h) {
if (w != refW) { throw new RuntimeException("invalid width: " + w +
", expected: " + refW); }
if (h != refH) { throw new RuntimeException("invalid height: " + h +
", expected: " + refH); }
}
@Override
public void setHints(int flags) {}
@Override
public void setPixels(int x, int y, int w, int h, ColorModel model,
byte pixels[], int offset, int scansize) {
for (int i = 0; i < pixels.length; i++) {
int p = pixels[i];
// just in case...
Color c = model.hasAlpha() ?
new Color(model.getRed (p),
model.getGreen(p),
model.getBlue (p),
model.getAlpha(p)) :
new Color(model.getRGB(p));
if (!c.equals(refColor)) {
throw new RuntimeException("invalid color: " + c +
", expected: " + refColor);
}
}
}
@Override
public void setPixels(int x, int y, int w, int h, ColorModel model,
int pixels[], int offset, int scansize) {
for (int i = 0; i < pixels.length; i++) {
int p = pixels[i];
Color c = model.hasAlpha() ?
new Color(model.getRed (p),
model.getGreen(p),
model.getBlue (p),
model.getAlpha(p)) :
new Color(model.getRGB(p));
if (!c.equals(refColor)) {
throw new RuntimeException("invalid color: " + c +
", expected: " + refColor);
}
}
}
@Override
public void setProperties(java.util.Hashtable props) {}
}
private static BufferedImage generateImage(int w, int h, Color c, int type) {
BufferedImage img = new BufferedImage(w, h, type);
Graphics g = img.getGraphics();
g.setColor(c);
g.fillRect(0, 0, w, h);
return img;
}
public static void main(String[] args) {
final int w1 = 20, w2 = 100, h1 = 30, h2 = 50;
final Color
c1 = new Color(255, 0, 0, 100), c2 = Color.BLACK, gray = Color.GRAY;
BufferedImage img1 =
generateImage(w1, h1, c1, BufferedImage.TYPE_INT_ARGB);
BufferedImage dummy =
generateImage(w1 + 5, h1 + 5, gray, BufferedImage.TYPE_BYTE_GRAY);
BufferedImage img2 =
generateImage(w2, h2, c2, BufferedImage.TYPE_BYTE_BINARY);
BufferedImage vars[] = new BufferedImage[] {img1, dummy, img2};
// default base image index (zero)
BaseMultiResolutionImage mri1 = new BaseMultiResolutionImage(vars);
// base image index = 2
BaseMultiResolutionImage mri2 = new BaseMultiResolutionImage(2, vars);
// do checks
mri1.getSource().startProduction(
new Checker(w1, h1, c1, true, DataBuffer.TYPE_INT));
mri2.getSource().startProduction(
new Checker(w2, h2, c2, false, DataBuffer.TYPE_BYTE));
}
}
|