我有一个奇怪的问题,似乎特定于Mac电脑。我有一个编程,将AWT绘图表面的内容打印到A3纸上。在Linux和Windows机器上输出正常。从Mac打印我得到相同的预设参数对话框,打印机按照预期在A3纸上打印,但由于某种原因,图像缩放到适合A4区域。以下是相关的代码部分:
public void print() {
PrinterJob printJob = PrinterJob.getPrinterJob();
PageFormat format = new PageFormat();
format.setOrientation(PageFormat.LANDSCAPE);
double margin = 18; // quarter inch
double m2 = margin * 2;
Paper paper = format.getPaper();
paper.setSize(16.54 * 72, 11.69 * 72); // A3 Landscape
paper.setImageableArea(margin, margin, paper.getWidth()-m2, paper.getHeight()-m2);
format.setPaper(paper);
printJob.setPrintable(this, format);
PrintRequestAttributeSet attributes = new HashPrintRequestAttributeSet();
attributes.add(MediaSizeName.ISO_A3);
attributes.add(OrientationRequested.LANDSCAPE);
attributes.add(new MediaPrintableArea((int)margin, (int)margin,
(int)(paper.getWidth()-m2), (int)(paper.getHeight()-m2),
MediaPrintableArea.INCH));
if(printJob.printDialog(attributes) ){
try {
printJob.print(attributes);
} catch(PrinterException pe) {
pe.printStackTrace();
}
}
}
public int print(Graphics g, PageFormat pageFormat, int pageIndex) {
if (pageIndex > 0) {
return(NO_SUCH_PAGE);
} else {
Graphics2D g2d = (Graphics2D)g;
g2d.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
if(this.componentToBePrinted instanceof PlannerView){
setScale(g2d);
}
disableDoubleBuffering(componentToBePrinted);
componentToBePrinted.paint(g2d);
enableDoubleBuffering(componentToBePrinted);
return(PAGE_EXISTS);
}
}
public void setScale(Graphics2D g2d){
PlannerView planner = (PlannerView)this.componentToBePrinted;
planner.resetZoom();
double scale = 1.0 / planner.getRowLength();
scale *= 4.0;
g2d.scale(scale, scale);
}
有谁知道造成这种情况的原因是什么?
干杯。
答案 0 :(得分:1)
尝试拨打
PageFormat newFormat =printJob.pageDialog(format);
打印前,打印机可能会修改边距。
至少看看调试器,看看它变成了什么。
另请注意,横向的Macintosh原生打印坐标系已反转。
所以也许可以尝试使用REVERSE_LANDSCAPE而不是LANDSCAPE(它可能会被翻转,但可能无法在翻译中获得列表)
答案 1 :(得分:0)
处理setImageableArea(),更改值并尝试。也适用于mac的reverse_landscape。 并设置A3尺寸:1190& 842不是十进制值。