Printing a BufferedImage in Java
问题 Does anyone know how to print a BufferedImage in Java? 回答1: Printing is just like drawing on the screen, so eventually you get a Graphics object, and you just drawImage into it. 回答2: I'm not sure what you mean by print. Print on a printer? Print to standard out? Write to a file? You can check out this tutorial from sun. If you're looking to write to a file. Open in your favorite image tool and print from there. http://download.oracle.com/javase/tutorial/2d/images/saveimage.html If you're