在JTextPane上更改打印边距

时间:2017-11-06 23:39:24

标签: java printing margins

在Java中打印时,我遇到了各种改变边距的解决方案,但似乎都没有。 HereHere

到目前为止我所拥有的是,

TextPane textPane = new JTextPane();
StyledDocument doc = textPane.getStyledDocument();

//  Define a keyword attribute
SimpleAttributeSet keyWord = new SimpleAttributeSet();
StyleConstants.setBold(keyWord, true);

Style style = doc.addStyle("StyleName", null);
StyleConstants.setIcon(style, new ImageIcon(qrcode));

doc.insertString(0, "Title Here\n", null );
doc.insertString(doc.getLength(), "Ignored", style);

textPane.print();

使用内置打印方法时,边距默认设置为 25.4mm 。我希望能够编辑这些边距,同时仍然可以有一个打印对话框

1 个答案:

答案 0 :(得分:1)

我“可以”验证的是,这样的内容会影响页面大小和输出的边距

JTextPane textPane = new JTextPane();
StyledDocument doc = textPane.getStyledDocument();

//  Define a keyword attribute
SimpleAttributeSet keyWord = new SimpleAttributeSet();
StyleConstants.setBold(keyWord, true);

Style style = doc.addStyle("StyleName", null);
//StyleConstants.setIcon(style, new ImageIcon(qrcode));

doc.insertString(0, "Title Here\n", null);
doc.insertString(doc.getLength(), "Ignored", style);

Paper paper = new Paper();
paper.setSize(fromCMToPPI(21.0), fromCMToPPI(29.7)); // A4
paper.setImageableArea(fromCMToPPI(5.0), fromCMToPPI(5.0), 
                fromCMToPPI(21.0) - fromCMToPPI(10.0), fromCMToPPI(29.7) - fromCMToPPI(10.0));

PageFormat pageFormat = new PageFormat();
pageFormat.setPaper(paper);

PrinterJob pj = PrinterJob.getPrinterJob();
pj.setPrintable(textPane.getPrintable(null, null), pageFormat);
PageFormat pf = pj.pageDialog(pageFormat);
if (pj.printDialog()) {
    pj.print();
}

正常输出与修改后的输出(突出显示更改后添加的边框)

Normal Modified

谈话方法......

protected static double fromCMToPPI(double cm) {
    return toPPI(cm * 0.393700787);
}

protected static double toPPI(double inch) {
    return inch * 72d;
}

我无法验证的是,这些值是出现在页面设置还是打印机对话框中,因为MacOS已经决定我不需要看到它们:/

根据以前在Windows上的经验,我似乎记得它在工作