Due to the current gap in continued funding from the U.S. National Science Foundation (NSF), the NSF Unidata Program Center has temporarily paused most operations. See NSF Unidata Pause in Most Operations for details.
hello folks I am printing my display with this code class VisadPlotPrint implements Runnable { public void run() { PrinterJob printJob = PrinterJob.getPrinterJob(); PageFormat pf = printJob.defaultPage(); pf = printJob.pageDialog(pf); printJob.setPrintable(display.getPrintable(),pf); if (printJob.printDialog()) { try { printJob.print(); } catch (Exception exc) { exc.printStackTrace(); } } } } but my printing is not complete. Only half of the display is on the printing. What can i do ? Something with the PageFormat ? thanks larsson
visad
archives: