FAQ
Cover
This is the archive Discourse for the Processing (ALPHA) software.
Please visit the new Processing forum for current information.

   Processing 1.0 _ALPHA_
   Programming Questions & Help
   Syntax
(Moderators: fry, REAS)
   very cool, save(path) works
« Previous topic | Next topic »

Pages: 1 
   Author  Topic: very cool, save(path) works  (Read 597 times)
sspboyd


very cool, save(path) works
« on: Apr 13th, 2004, 8:27pm »

Hello hello,
I was about to ask if there was a way to save the tif from a save() command to somewhere other than the default location. But I tried it out first myself and lo' and behold, it works!
 
This is great since it means I can save a series of large sized tifs to the external drive rather than overloading the local drive.
 
Code:

void setup()
{
size(400,400);
background(255);
fill(200,0,10);
rect(180, 40, 40, 200);
rect(180, 260, 40, 40);
 
save("/Users/stephen/Desktop/testImg.tif");
 
}

 
 

gmail.com w/ sspboyd username
Pages: 1 

« Previous topic | Next topic »