I'm trying to export frames from a Processing sketch using the saveFrame() function, but they come out very rough, specially the fonts. I'm on a Mac with retina display and even though when I'm running the sketch everything looks good and sharp, when I save the frames they look bad.
I have included the following lines (in the setup function) but they don't improve the outcome of the saveFrame() function:
size(1280, 720, "processing.core.PGraphicsRetina2D");
hint(ENABLE_RETINA_PIXELS);
smooth(8);
Any ideas?