We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
Page Index Toggle Pages: 1
absolute path for saveFrame()? (Read 1137 times)
absolute path for saveFrame()?
Jul 27th, 2005, 4:29pm
 
is it possible to allow an absolute path for saveFrame()?  been doing a lot of linear motion gfx work lately and the dude would like to see things rendered to the server...
Re: absolute path for saveFrame()?
Reply #1 - Jul 28th, 2005, 1:08am
 
use the save() method from PImage. so:
((PImage)g).save("blah.tif");
ought to work.

as of now PGraphics.save() is overridden to prepend the path, which i think is a mistake, so i'll remove that for 93.
Page Index Toggle Pages: 1