blob: fff015a4f3cc336da25a3d1b174b373c072250a9 [file] [log] [blame]
jgodinez352223b2009-08-04 17:25:36 -07001/*
2 * Copyright 2009 Sun Microsystems, Inc. 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20 * CA 95054 USA or visit www.sun.com if you need additional information or
21 * have any questions.
22 */
23import java.awt.*;
24import java.awt.geom.Ellipse2D;
25import java.awt.image.BufferedImage;
26import java.io.File;
27import javax.imageio.ImageIO;
28
29/**
30 * @author chrisn@google.com (Chris Nokleberg)
31 * @author yamauchi@google.com (Hiroshi Yamauchi)
32 */
33public class ThinLineTest {
34 private static final int PIXEL = 381;
35
36 public static void main(String[] args) throws Exception {
37 BufferedImage image = new BufferedImage(200, 200, BufferedImage.TYPE_INT_RGB);
38 Graphics2D g = image.createGraphics();
39
40 g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
41 g.setPaint(Color.WHITE);
42 g.fill(new Rectangle(image.getWidth(), image.getHeight()));
43
44 g.scale(0.5 / PIXEL, 0.5 / PIXEL);
45 g.setPaint(Color.BLACK);
46 g.setStroke(new BasicStroke(PIXEL));
47 g.draw(new Ellipse2D.Double(PIXEL * 50, PIXEL * 50, PIXEL * 300, PIXEL * 300));
48
49 // To visually check it
50 //ImageIO.write(image, "PNG", new File(args[0]));
51
52 boolean nonWhitePixelFound = false;
53 for (int x = 0; x < 200; ++x) {
54 if (image.getRGB(x, 100) != Color.WHITE.getRGB()) {
55 nonWhitePixelFound = true;
56 break;
57 }
58 }
59 if (!nonWhitePixelFound) {
60 throw new RuntimeException("The thin line disappeared.");
61 }
62 }
63}