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.
Hi Curtis and Yakup, > import java.awt.print.*; > ... > DisplayImpl display = ...; > PrinterJob printJob = PrinterJob.getPrinterJob(); > Printable p = display.getPrintable(); > printJob.setPrintable(p); > if (printJob.printDialog()) printJob.print(); That's working, but only if the printJob.print() is not called from an Event-Thread. In this case you have to enclose the printJob.print() in a new Thread: If (printJob.printDialog()) { Runnable printer = new Runnable() { public void run() { try { printJob.print(); } catch (Exception exc) exc.printStackTrace(); } } } Thread printerThread = new Thread(printer); printerThread.start(); } That is because print() is calling the getImage()-method of DisplayImpl. Cheers, Mathias
visad
archives: