File: PrintTextTest.java

package info (click to toggle)
openjdk-21 21.0.8%2B9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 823,976 kB
  • sloc: java: 5,613,338; xml: 1,643,607; cpp: 1,296,296; ansic: 420,291; asm: 404,850; objc: 20,994; sh: 15,271; javascript: 11,245; python: 6,895; makefile: 2,362; perl: 357; awk: 351; sed: 172; jsp: 24; csh: 3
file content (462 lines) | stat: -rw-r--r-- 16,784 bytes parent folder | download | duplicates (5)
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
/*
 * Copyright (c) 2007, 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 6425068 7157659 8132890
 * @key printer
 * @summary Confirm that text prints where we expect to the length we expect.
 * @library /java/awt/regtesthelpers
 * @build PassFailJFrame
 * @run main/manual PrintTextTest
 */

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GraphicsEnvironment;
import java.awt.RenderingHints;
import java.awt.font.FontRenderContext;
import java.awt.font.GlyphVector;
import java.awt.font.TextLayout;
import java.awt.geom.AffineTransform;
import java.awt.geom.Point2D;
import java.awt.print.Book;
import java.awt.print.PageFormat;
import java.awt.print.Printable;
import java.awt.print.PrinterException;
import java.awt.print.PrinterJob;
import java.text.AttributedCharacterIterator;
import java.text.AttributedString;
import java.util.HashMap;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JTabbedPane;

public class PrintTextTest {

    static final String INSTRUCTIONS = """
        This tests that printed text renders similarly to on-screen under a variety
        of APIs and graphics and font transforms.
        1. Print to your preferred printer.
        2. Collect the output.
        3. Refer to the onscreen buttons to cycle through the on-screen content.
        4. For each page, confirm that the printed content corresponds to the
           on-screen rendering for that *same* page. Some cases may look odd but
           its intentional. Verify it looks the same on screen and on the printer.
        Note that text does not scale linearly from screen to printer so some
        differences are normal and not a bug.
        The easiest way to spot real problems is to check that any underlines are
        the same length as the underlined text and that any rotations are the same
        in each case.
        Note that each on-screen page is printed in both portrait and landscape mode.
        So for example, Page 1/Portrait, and Page 1/Landscape when rotated to view
        properly, should both match Page 1 on screen.
        """;

    public static void main(String[] args) throws Exception {

        PrinterJob pjob = PrinterJob.getPrinterJob();
        PageFormat portrait = pjob.defaultPage();
        portrait.setOrientation(PageFormat.PORTRAIT);
        int preferredSize = (int) portrait.getImageableWidth();

        PageFormat landscape = pjob.defaultPage();
        landscape.setOrientation(PageFormat.LANDSCAPE);

        Book book = new Book();

        JTabbedPane pane = new JTabbedPane();

        int page = 1;
        Font font = new Font(Font.DIALOG, Font.PLAIN, 18);
        String name = "Page " + page++;
        PrintText pt = new PrintText(name, font, null, false, preferredSize);
        pane.addTab(name, pt);
        book.append(pt, portrait);
        book.append(pt, landscape);

        font = new Font(Font.DIALOG, Font.PLAIN, 18);
        name = "Page " + page++;
        pt = new PrintText(name, font, null, true, preferredSize);
        pane.addTab(name, pt);
        book.append(pt, portrait);
        book.append(pt, landscape);

        font = getPhysicalFont();
        name = "Page " + page++;
        pt = new PrintText(name, font, null, false, preferredSize);
        pane.addTab(name, pt);
        book.append(pt, portrait);
        book.append(pt, landscape);

        font = getPhysicalFont();
        AffineTransform rotTx = AffineTransform.getRotateInstance(0.15);
        rotTx.translate(60, 0);
        name = "Page " + page++;
        pt = new PrintText(name, font, rotTx, false, preferredSize);
        pane.addTab(name, pt);
        book.append(pt, portrait);
        book.append(pt, landscape);

        font = new Font(Font.DIALOG, Font.PLAIN, 18);
        AffineTransform scaleTx = AffineTransform.getScaleInstance(1.25, 1.25);
        name = "Page " + page++;
        pt = new PrintText(name, font, scaleTx, false, preferredSize);
        pane.addTab(name, pt);
        book.append(pt, portrait);
        book.append(pt, landscape);

        font = new Font(Font.DIALOG, Font.PLAIN, 18);
        scaleTx = AffineTransform.getScaleInstance(-1.25, 1.25);
        scaleTx.translate(-preferredSize / 1.25, 0);
        name = "Page " + page++;
        pt = new PrintText(name, font, scaleTx, false, preferredSize);
        pane.addTab(name, pt);
        book.append(pt, portrait);
        book.append(pt, landscape);

        font = new Font(Font.DIALOG, Font.PLAIN, 18);
        scaleTx = AffineTransform.getScaleInstance(1.25, -1.25);
        scaleTx.translate(0, -preferredSize / 1.25);
        name = "Page " + page++;
        pt = new PrintText(name, font, scaleTx, false, preferredSize);
        pane.addTab(name, pt);
        book.append(pt, portrait);
        book.append(pt, landscape);

        font = font.deriveFont(rotTx);
        name = "Page " + page++;
        pt = new PrintText(name, font, null, false, preferredSize);
        pane.addTab(name, pt);
        book.append(pt, portrait);
        book.append(pt, landscape);

        font = new Font(Font.MONOSPACED, Font.PLAIN, 12);
        name = "Page " + page++;
        pt = new PrintText(name, font, null, false, preferredSize);
        pane.addTab(name, pt);
        book.append(pt, portrait);
        book.append(pt, landscape);

        Font xfont = font.deriveFont(AffineTransform.getScaleInstance(1.5, 1));
        name = "Page " + page++;
        pt = new PrintText(name, xfont, null, false, preferredSize);
        pane.addTab(name, pt);
        book.append(pt, portrait);
        book.append(pt, landscape);

        Font yfont = font.deriveFont(AffineTransform.getScaleInstance(1, 1.5));
        name = "Page " + page++;
        pt = new PrintText(name, yfont, null, false, preferredSize);
        pane.addTab(name, pt);
        book.append(pt, portrait);
        book.append(pt, landscape);

        if (System.getProperty("os.name").startsWith("Windows")) {
            font = new Font("MS Gothic", Font.PLAIN, 12);
            name = "Page " + page++;
            pt = new PrintJapaneseText(name, font, null, true, preferredSize);
            pane.addTab(name, pt);
            book.append(pt, portrait);
            book.append(pt, landscape);

            font = new Font("MS Gothic", Font.PLAIN, 12);
            name = "Page " + page++;
            rotTx = AffineTransform.getRotateInstance(0.15);
            pt = new PrintJapaneseText(name, font, rotTx, true, preferredSize);
            pane.addTab(name, pt);
            book.append(pt, portrait);
            book.append(pt, landscape);
        }

        pjob.setPageable(book);

        JButton printButton = new JButton("Print");
        printButton.addActionListener(event -> {
            try {
                if (pjob.printDialog()) {
                    pjob.print();
                }
            } catch (PrinterException e) {
                throw new RuntimeException(e.getMessage(), e);
            }
        });

        JFrame f = new JFrame("PrintTextTest");
        f.add(BorderLayout.CENTER, pane);
        f.add(BorderLayout.SOUTH, printButton);
        f.pack();

        PassFailJFrame.builder()
            .title("PrintTextTest")
            .instructions(INSTRUCTIONS)
            .testTimeOut(10)
            .columns(60)
            .testUI(f)
            .build()
            .awaitAndCheck();
    }

    // The test needs a physical font that supports Latin.
    private static Font physicalFont;
    private static Font getPhysicalFont() {
        if (physicalFont != null) {
            return physicalFont;
        }
        GraphicsEnvironment ge =
            GraphicsEnvironment.getLocalGraphicsEnvironment();
        String[] names = ge.getAvailableFontFamilyNames();

        for (String n : names) {
            switch (n) {
                case Font.DIALOG:
                case Font.DIALOG_INPUT:
                case Font.SERIF:
                case Font.SANS_SERIF:
                case Font.MONOSPACED:
                     continue;
                default:
                    Font f = new Font(n, Font.PLAIN, 18);
                    if (f.canDisplayUpTo("AZaz09") == -1) {
                        physicalFont = f;
                        return f;
                    }
            }
        }
        physicalFont = new Font(Font.DIALOG, Font.PLAIN, 18);
        return physicalFont;
    }

    private static class PrintText extends Component implements Printable {

        protected final Font textFont;
        protected final AffineTransform gxTx;
        protected final String page;
        protected final boolean useFM;
        protected final int preferredSize;

        public PrintText(String page, Font font, AffineTransform gxTx, boolean fm, int size) {
            this.page = page;
            this.textFont = font;
            this.gxTx = gxTx;
            this.useFM = fm;
            this.preferredSize = size;
            setBackground(Color.WHITE);
        }

        private static AttributedCharacterIterator getIterator(String s) {
            return new AttributedString(s).getIterator();
        }

        private static String orient(PageFormat pf) {
            if (pf.getOrientation() == PageFormat.PORTRAIT) {
                return "Portrait";
            } else {
                return "Landscape";
            }
        }

        @Override
        public int print(Graphics g, PageFormat pf, int pageIndex) {
            Graphics2D g2d = (Graphics2D) g;
            g2d.translate(pf.getImageableX(), pf.getImageableY());
            g.drawString(page + " " + orient(pf), 50, 20);
            g.translate(0, 25);
            paint(g);
            return PAGE_EXISTS;
        }

        @Override
        public Dimension getMinimumSize() {
            return getPreferredSize();
        }

        @Override
        public Dimension getPreferredSize() {
            return new Dimension(preferredSize, preferredSize);
        }

        @Override
        public void paint(Graphics g) {

            g.setColor(Color.WHITE);
            g.fillRect(0, 0, getSize().width, getSize().height);

            Graphics2D g2d = (Graphics2D) g;
            if (gxTx != null) {
                g2d.transform(gxTx);
            }
            if (useFM) {
                g2d.setRenderingHint(RenderingHints.KEY_FRACTIONALMETRICS,
                                     RenderingHints.VALUE_FRACTIONALMETRICS_ON);
            }

            g.setFont(textFont);
            FontMetrics fm = g.getFontMetrics();

            String s;
            int LS = 30;
            int ix = 10, iy = LS + 10;
            g.setColor(Color.BLACK);

            s = "drawString(String str, int x, int y)";
            g.drawString(s, ix, iy);
            if (!textFont.isTransformed()) {
                g.drawLine(ix, iy + 1, ix + fm.stringWidth(s), iy + 1);
            }

            iy += LS;
            s = "drawString(AttributedCharacterIterator iterator, int x, int y)";
            g.drawString(getIterator(s), ix, iy);

            iy += LS;
            s = "\tdrawChars(\t\r\nchar[], int off, int len, int x, int y\t)";
            g.drawChars(s.toCharArray(), 0, s.length(), ix, iy);
            if (!textFont.isTransformed()) {
                g.drawLine(ix, iy + 1, ix + fm.stringWidth(s), iy + 1);
            }

            iy += LS;
            s = "drawBytes(byte[], int off, int len, int x, int y)";
            byte[] data = new byte[s.length()];
            for (int i = 0; i < data.length; i++) {
                data[i] = (byte) s.charAt(i);
            }
            g.drawBytes(data, 0, data.length, ix, iy);

            Font f = g2d.getFont();
            FontRenderContext frc = g2d.getFontRenderContext();

            iy += LS;
            s = "drawString(String s, float x, float y)";
            g2d.drawString(s, (float) ix, (float) iy);
            if (!textFont.isTransformed()) {
                g.drawLine(ix, iy + 1, ix + fm.stringWidth(s), iy + 1);
            }

            iy += LS;
            s = "drawString(AttributedCharacterIterator iterator, " +
                "float x, float y)";
            g2d.drawString(getIterator(s), (float) ix, (float) iy);

            iy += LS;
            s = "drawGlyphVector(GlyphVector g, float x, float y)";
            GlyphVector gv = f.createGlyphVector(frc, s);
            g2d.drawGlyphVector(gv, ix, iy);
            Point2D adv = gv.getGlyphPosition(gv.getNumGlyphs());
            if (!textFont.isTransformed()) {
                g.drawLine(ix, iy + 1, ix + (int) adv.getX(), iy + 1);
            }

            iy += LS;
            s = "GlyphVector with position adjustments";

            gv = f.createGlyphVector(frc, s);
            int ng = gv.getNumGlyphs();
            adv = gv.getGlyphPosition(ng);
            for (int i = 0; i < ng; i++) {
                Point2D gp = gv.getGlyphPosition(i);
                double gx = gp.getX();
                double gy = gp.getY();
                if (i % 2 == 0) {
                    gy += 5;
                } else {
                    gy -= 5;
                }
                gp.setLocation(gx, gy);
                gv.setGlyphPosition(i, gp);
            }
            g2d.drawGlyphVector(gv, ix, iy);
            if (!textFont.isTransformed()) {
                g.drawLine(ix, iy + 1, ix + (int) adv.getX(), iy + 1);
            }

            iy += LS;
            s = "drawString: \u0924\u094d\u0930 \u0915\u0948\u0930\u0947 End.";
            g.drawString(s, ix, iy);
            if (!textFont.isTransformed()) {
                g.drawLine(ix, iy + 1, ix + fm.stringWidth(s), iy + 1);
            }

            iy += LS;
            s = "TextLayout 1: \u0924\u094d\u0930 \u0915\u0948\u0930\u0947 End.";
            TextLayout tl = new TextLayout(s, new HashMap<>(), frc);
            tl.draw(g2d, ix, iy);

            iy += LS;
            s = "TextLayout 2: \u0924\u094d\u0930 \u0915\u0948\u0930\u0947 End.";
            tl = new TextLayout(s, f, frc);
            tl.draw(g2d, ix, iy);
        }
    }

    private static class PrintJapaneseText extends PrintText {

        public PrintJapaneseText(String page, Font font, AffineTransform gxTx, boolean fm, int size) {
            super(page, font, gxTx, fm, size);
        }

        private static final String TEXT =
            "\u3042\u3044\u3046\u3048\u304a\u30a4\u30ed\u30cf" +
            "\u30cb\u30db\u30d8\u30c8\u4e00\u4e01\u4e02\u4e05\uff08";

        @Override
        public void paint(Graphics g) {

            g.setColor(Color.WHITE);
            g.fillRect(0, 0, getSize().width, getSize().height);

            Graphics2D g2d = (Graphics2D) g;
            if (gxTx != null) {
                g2d.transform(gxTx);
            }
            if (useFM) {
                g2d.setRenderingHint(RenderingHints.KEY_FRACTIONALMETRICS,
                                     RenderingHints.VALUE_FRACTIONALMETRICS_ON);
            }

            String text = TEXT + TEXT + TEXT;
            g.setColor(Color.BLACK);
            int y = 20;
            float origSize = 7f;
            for (int i = 0; i < 11; i++) {
                float size = origSize + (i * 0.1f);
                g2d.translate(0, size + 6);
                Font f = textFont.deriveFont(size);
                g2d.setFont(f);
                FontMetrics fontMetrics = g2d.getFontMetrics();
                int stringWidth = fontMetrics.stringWidth(text);
                g.drawLine(0, y + 1, stringWidth, y + 1);
                g.drawString(text, 0, y);
                y += 10;
            }
        }
    }
}