我尝试使用DocPrintJob打印pdf,但它不适合页面,因此,我必须手动打印页面。 我的pdf已经是Letter格式。
这是我到目前为止所做的事情:
PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();
DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
PrintService printService[] = PrintServiceLookup.lookupPrintServices(flavor, pras);
PrintService defaultService = PrintServiceLookup.lookupDefaultPrintService();
PrintService service = ServiceUI.printDialog(GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().getDefaultConfiguration(), 200, 200,
printService, defaultService, flavor, pras);
if (service != null) {
pras.add(MediaSizeName.NA_LETTER);
PageFormat page = new PageFormat();
/* MediaSizeName media = MediaSize.findMedia(
(float) (page.getWidth() / 72.0),
(float) (page.getHeight() / 72.0),
Size2DSyntax.INCH);
*/
// pras.add(media);
DocPrintJob job = service.createPrintJob();
FileInputStream fis=null;
File file = new File("test.pdf");
try {
fis = new FileInputStream("test.pdf");
} catch (FileNotFoundException e2) {
// TODO Auto-generated catch block
e2.printStackTrace();
}
DocAttributeSet das = new HashDocAttributeSet();
Doc document = null;
document = new SimpleDoc(fis, flavor, null);
try {
job.print(document, pras);
} catch (PrintException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
正如您所看到的,我尝试过使用MediaSizeName.NA_LETTER,但它并没有改变任何东西。 还有一种方法是让用户选择介质尺寸,打印对话框中没有选项吗? 提前谢谢!
答案 0 :(得分:-1)
似乎打印机根据您设置的首选项使用默认纸张,因此如果您将首选项设置为使用字母大小,则会询问字母大小页面,默认情况下它将打印在A4尺寸纸张上。