|
| 1 | +/* |
| 2 | + * Copyright (c) 2022, 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 | +/** |
| 25 | + * @test |
| 26 | + * @bug 8240756 |
| 27 | + * @summary Non-English characters are printed with wrong glyphs on MacOS |
| 28 | + * @modules java.desktop/sun.java2d java.desktop/sun.java2d.loops java.desktop/sun.font |
| 29 | + * @requires os.family == "mac" |
| 30 | + * @run main MultiSlotFontTest |
| 31 | + */ |
| 32 | + |
| 33 | +import java.awt.Color; |
| 34 | +import java.awt.Dimension; |
| 35 | +import java.awt.Font; |
| 36 | +import java.awt.Graphics; |
| 37 | +import java.awt.Image; |
| 38 | +import java.awt.RenderingHints; |
| 39 | +import java.awt.font.FontRenderContext; |
| 40 | +import java.awt.font.GlyphVector; |
| 41 | +import java.awt.image.BufferedImage; |
| 42 | +import sun.font.StandardGlyphVector; |
| 43 | +import sun.java2d.OSXOffScreenSurfaceData; |
| 44 | +import sun.java2d.SunGraphics2D; |
| 45 | +import sun.java2d.SurfaceData; |
| 46 | +import sun.java2d.loops.SurfaceType; |
| 47 | + |
| 48 | +public class MultiSlotFontTest { |
| 49 | + |
| 50 | + private static final int WIDTH = 100; |
| 51 | + private static final int HEIGHT = 60; |
| 52 | + |
| 53 | + private static final String TEST_STR = "\u3042\u3044\u3046\u3048\u304Aabc"; |
| 54 | + private static final int EXPECTED_HEIGHT = 10; |
| 55 | + private static final int EXPECTED_WIDTH = 77; |
| 56 | + private static final int LIMIT_DIFF_HEIGHT = 3; |
| 57 | + private static final int LIMIT_DIFF_WIDTH = 15; |
| 58 | + |
| 59 | + public static void main(String[] args) throws Exception { |
| 60 | + MultiSlotFontTest test = new MultiSlotFontTest(); |
| 61 | + } |
| 62 | + |
| 63 | + public MultiSlotFontTest() { |
| 64 | + BufferedImage img = createImage(); |
| 65 | + |
| 66 | + SurfaceData sd = OSXOffScreenSurfaceData.createDataIC(img, |
| 67 | + SurfaceType.IntRgb); |
| 68 | + SunGraphics2D g2d = new SunGraphics2D(sd, |
| 69 | + Color.BLACK, Color.WHITE, null); |
| 70 | + Font font = g2d.getFont(); |
| 71 | + |
| 72 | + if (font.canDisplayUpTo(TEST_STR) != -1) { |
| 73 | + System.out.println("There is no capable font. Skipping the test."); |
| 74 | + System.out.println("Font: " + font); |
| 75 | + return; |
| 76 | + } |
| 77 | + |
| 78 | + FontRenderContext frc = new FontRenderContext(null, false, false); |
| 79 | + StandardGlyphVector gv = new StandardGlyphVector(font, TEST_STR, frc); |
| 80 | + g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, |
| 81 | + RenderingHints.VALUE_ANTIALIAS_OFF); |
| 82 | + g2d.drawGlyphVector(gv, 0.0f, (float)(HEIGHT - 5)); |
| 83 | + g2d.dispose(); |
| 84 | + |
| 85 | + Dimension d = getBounds(img); |
| 86 | + |
| 87 | + if (Math.abs(d.height - EXPECTED_HEIGHT) > LIMIT_DIFF_HEIGHT || |
| 88 | + Math.abs(d.width - EXPECTED_WIDTH) > LIMIT_DIFF_WIDTH) { |
| 89 | + debugOut(img); |
| 90 | + throw new RuntimeException( |
| 91 | + "Incorrect GlyphVector shape " + d + "," + gv); |
| 92 | + } |
| 93 | + } |
| 94 | + |
| 95 | + private static BufferedImage createImage() { |
| 96 | + BufferedImage image = new BufferedImage(WIDTH, HEIGHT, |
| 97 | + BufferedImage.TYPE_INT_RGB); |
| 98 | + Graphics g = image.createGraphics(); |
| 99 | + g.setColor(Color.WHITE); |
| 100 | + g.fillRect(0, 0, WIDTH, HEIGHT); |
| 101 | + g.dispose(); |
| 102 | + return image; |
| 103 | + } |
| 104 | + |
| 105 | + private Dimension getBounds(BufferedImage img) { |
| 106 | + int top = HEIGHT; |
| 107 | + int left = WIDTH; |
| 108 | + int right = 0; |
| 109 | + int bottom = 0; |
| 110 | + for (int y = 0; y < HEIGHT; y++) { |
| 111 | + for (int x = 0; x < WIDTH; x++) { |
| 112 | + if ((img.getRGB(x, y) & 0xFFFFFF) == 0) { |
| 113 | + if (top > y) top = y; |
| 114 | + if (bottom < y) bottom = y; |
| 115 | + if (left > x) left = x; |
| 116 | + if (right < x) right = x; |
| 117 | + } |
| 118 | + } |
| 119 | + } |
| 120 | + return new Dimension(right - left, bottom - top); |
| 121 | + } |
| 122 | + |
| 123 | + private void debugOut(BufferedImage img) { |
| 124 | + for (int y = 0; y < HEIGHT; y++) { |
| 125 | + for (int x = 0; x < WIDTH; x++) { |
| 126 | + int c = img.getRGB(x, y) & 0xFFFFFF; |
| 127 | + if (c == 0) { |
| 128 | + System.out.print("*"); |
| 129 | + } else { |
| 130 | + System.out.print(" "); |
| 131 | + } |
| 132 | + } |
| 133 | + System.out.println(); |
| 134 | + } |
| 135 | + } |
| 136 | +} |
0 commit comments