首页 > 其他 > 详细

e684. 以多种格式打印

时间:2018-09-02 23:18:04      阅读:145      评论:0      收藏:0      [点我收藏+]

A Book object is used when printing pages with different page formats. This example prints the first page in landscape and five more pages in portrait.

    public class PrintBook {
        public static void main(String[] args) {
            PrinterJob pjob = PrinterJob.getPrinterJob();
            Book book = new Book();
    
            // First part.
            PageFormat landscape = pjob.defaultPage();
            landscape.setOrientation(PageFormat.LANDSCAPE);
            book.append(new Printable1(), landscape);
    
            // Second part.
            PageFormat portrait = pjob.defaultPage();
            portrait.setOrientation(PageFormat.PORTRAIT);
            book.append(new Printable2(), portrait, 5);
    
            pjob.setPageable(book);
            try {
                pjob.print();
            } catch (PrinterException e) {
            }
        }
        static class Printable1 implements Printable {
            public int print(Graphics g, PageFormat pf, int pageIndex) {
                drawGraphics(g, pf);
                return Printable.PAGE_EXISTS;
            }
        }
        static class Printable2 implements Printable {
            public int print(Graphics g, PageFormat pf, int pageIndex) {
                drawGraphics(g, pf);
                return Printable.PAGE_EXISTS;
            }
        }
    }

 

Related Examples

e684. 以多种格式打印

原文:https://www.cnblogs.com/borter/p/9575608.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!