We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I'm trying to draw on an image larger than my monitor (approx 2400 x 3300 pixels). When I try to save the results only the part visible on the screen is saved correctly. I've tried saving both the window PGraphics and the offscreen PGraphics that I'm drawing into. In the case of the window one it crops the image and only saves the visible portion. In the case of the offscreen one it saves the full image, but none of the drawing commands to the offscreen portion of the window are preserved.
The sketch works correctly on a scaled down version of the image. I'm trying to get it to work at full resolution so I can print it. Please help!
Thank you!
Answers
Did you try exporting them as PDF?
https://processing.org:8443/reference/libraries/pdf/index.html
Thanks for the suggestion. I can try that, but it will take a fair bit of modification to my code. Using PDF is probably a good idea in general for printing, so I'll get to that.
I'd still really like to be able to output the large image as a JPG if that's possible.