1 /*
2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24 import java.awt.*;
25 import java.awt.MultipleGradientPaint.*;
26 import java.awt.geom.*;
27 import java.awt.image.*;
28
29 /**
30 * @test
31 * @bug 8023483
32 * @summary tests if the transform-parameter is applied correctly when creating
33 * a gradient.
34 * @author ceisserer
35 */
36 public class GradientTransformTest extends Frame {
37 BufferedImage srcImg;
38 Image dstImg;
39
40 public GradientTransformTest() {
41 srcImg = createSrcImage();
42 dstImg = getGraphicsConfiguration().createCompatibleVolatileImage(20,
43 20);
44 }
45
46 protected void renderToVI(BufferedImage src, Image dst) {
47 Graphics2D g = (Graphics2D) dst.getGraphics();
48
49 g.setColor(Color.WHITE);
50 g.fillRect(0, 0, dst.getWidth(null), dst.getHeight(null));
|
1 /*
2 * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24 import java.awt.*;
25 import java.awt.MultipleGradientPaint.*;
26 import java.awt.geom.*;
27 import java.awt.image.*;
28
29 /**
30 * @test
31 * @key headful
32 * @bug 8023483
33 * @summary tests if the transform-parameter is applied correctly when creating
34 * a gradient.
35 * @author ceisserer
36 */
37 public class GradientTransformTest extends Frame {
38 BufferedImage srcImg;
39 Image dstImg;
40
41 public GradientTransformTest() {
42 srcImg = createSrcImage();
43 dstImg = getGraphicsConfiguration().createCompatibleVolatileImage(20,
44 20);
45 }
46
47 protected void renderToVI(BufferedImage src, Image dst) {
48 Graphics2D g = (Graphics2D) dst.getGraphics();
49
50 g.setColor(Color.WHITE);
51 g.fillRect(0, 0, dst.getWidth(null), dst.getHeight(null));
|