Java 打印图片

import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.awt.print.PageFormat;
import java.awt.print.Printable;
import java.awt.print.PrinterException;
import java.awt.print.PrinterJob;
import java.io.File;
import java.io.IOException;

/**
 * @description: 打印图片
 * @author: immortal
 * @modified By:
 * @create: 2023-09-10 17:51
 **/

public class PrintImg {

    public static void main(String[] args) {
        /* Load the image */
        BufferedImage img = null;
        try {
            img = ImageIO.read(new File("C:\\myImg\\my.png")); // replace with actual image file path
        } catch (IOException e) {
            e.printStackTrace();
        }

        /* Create a print job */
        PrinterJob printJob = PrinterJob.getPrinterJob();
        BufferedImage finalImg = img;
        printJob.setPrintable(new Printable() {
            public int print(Graphics g, PageFormat pf, int pageIndex) {
                /* We have only one page, and 'page' is zero-based */
                if (pageIndex != 0) {
                    return NO_SUCH_PAGE;
                }

                /* User (0,0) is typically outside the imageable area, so we must
                 * translate by the X and Y values in the PageFormat to avoid clipping
                 */
                Graphics2D g2d = (Graphics2D) g;
                g2d.translate(pf.getImageableX(), pf.getImageableY());

                /* Now we perform our rendering */
                g.drawImage(finalImg, 0, 0, finalImg.getWidth(), finalImg.getHeight(), null);

                /* tell the caller that this page is part of the printed document */
                return PAGE_EXISTS;
            }
        });
        /* Now we can print */
        try {
            printJob.print();
        } catch (PrinterException e) {
            e.printStackTrace();
        }
    }
}
 

猜你喜欢

转载自blog.csdn.net/qq_30346433/article/details/132794631