How to print image in java

2020-05-28 18:54发布

How can we print a buffered image in java? We can send FileInputStream to Print Service, but i need to send buffered Image to it.

FileInputStream fin = new FileInputStream("YOurImageFileName.PNG");
Doc doc = new SimpleDoc(fin, DocFlavor.INPUT_STREAM.GIF, null);
job.print(doc, pras);

Is it possible?

Check the complete code here.

标签: java image
2条回答
对你真心纯属浪费
2楼-- · 2020-05-28 19:28
PrinterJob printJob = PrinterJob.getPrinterJob();
printJob.setPrintable(new Printable() {
        public int print(Graphics graphics, PageFormat pageFormat, int pageIndex) throws PrinterException {
                if (pageIndex != 0) {
                    return NO_SUCH_PAGE;
                }
                graphics.drawImage(image, 0, 0, image.getWidth(), image.getHeight(), null);
                return PAGE_EXISTS;
        }
});     
try {
    printJob.print();
} catch (PrinterException e1) {             
    e1.printStackTrace();
}
查看更多
疯言疯语
3楼-- · 2020-05-28 19:43

You can use the iText library.. there is a simple example to print an Image to pdf .

Adding an IText Image to a PDF document

查看更多
登录 后发表回答