for my current project, I'm looking for a really simple workaround. I do a random graphic in Processing, and when the code has finished the graphic it should print on my printer. But preferable without the dialog etc. Just print it on paper.

I was looking around the Internet and several Java forums, but I only found "overkill" tutorials. (like this: http://www.javaworld.com/javaworld/jw-10-2000/jw-1020-print.html)

Is there an easy way to do this?

link|improve this question

45% accept rate
Would saving a PDF from your sketch, then manually opening the file and printing be an option ? – George Profenza Sep 1 '11 at 1:05
feedback

2 Answers

I've heard good things about GDSPrinting. While I've not used it and according to that page it's version 0.2, it may be a solution for you.

As has been said too many times before: Java and Printers don't get along very well. I wish you luck.

link|improve this answer
feedback

This is definitely a hack, but if you can't find what you're looking for, script taking a screenshot (keyboard command) and open a photo editor and print. http://sikuli.org/ can automate pressing buttons (like print) and you can execute external commands from Processing using open()

http://processing.org/reference/open_.html

http://sikuli.org/docx/faq/010-command-line.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.