1 50 51 package com.lowagie.text.pdf; 52 53 import java.awt.print.PrinterGraphics ; 54 import java.awt.print.PrinterJob ; 55 56 60 public class PdfPrinterGraphics2D extends PdfGraphics2D implements PrinterGraphics 61 { 62 private PrinterJob printerJob; 63 64 public PdfPrinterGraphics2D(PdfContentByte cb, float width, float height, FontMapper fontMapper, 65 boolean onlyShapes, boolean convertImagesToJPEG, float quality, PrinterJob printerJob) { 66 super(cb, width, height, fontMapper, onlyShapes, convertImagesToJPEG, quality); 67 this.printerJob = printerJob; 68 } 69 70 public PrinterJob getPrinterJob() { 71 return printerJob; 72 } 73 } 74 | Popular Tags |