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)
   Homework help - enlarging then printing
« Previous topic | Next topic »

Pages: 1 
   Author  Topic: Homework help - enlarging then printing  (Read 583 times)
Allen


Homework help - enlarging then printing
« on: Sep 14th, 2003, 6:22pm »

I've done some drawings in Processing for an assignment I had in a design class, but a requirement asks that the assignment be 10 x 10 and printed. Figuring that it would be an easy task to increase the size when finished I ignored this requirement till now and now I've found myself stuck. Does anyone know a nice way to increase the size of my drawings using OS X? I should also mention, free software solutions are always the best
 
Thanks
« Last Edit: Sep 14th, 2003, 6:23pm by Allen »  
benelek

35160983516098 WWW Email
Re: Homework help - enlarging then printing
« Reply #1 on: Sep 15th, 2003, 6:22am »

what units are the 10x10? what kind of pixel dimentions do you need? do just require that the image be scaled up proportionally, or do you want to scale the resolution of the actual sketch in p5? if you just need an image (or set of images) resized, i'd be happy to push the button in photoshop for you...
 
Allen


Re: Homework help - enlarging then printing
« Reply #2 on: Sep 15th, 2003, 8:47pm »

I didn't even notice I forgot the unit. Ha. That should be 10 inches by 10 inches.  
 
I don't want to go the print screen and change size in Photoshop route because of pixilation. Or are you writing about a different method to increase the size in Photoshop?
« Last Edit: Sep 15th, 2003, 8:48pm by Allen »  
TomC

WWW
Re: Homework help - enlarging then printing
« Reply #3 on: Sep 16th, 2003, 1:07pm »

How big are your processing drawings?  Have you hard-coded measurements, or done them as a proportion of width/height?
 
e.g. The former would be:
size(200,200);
point(50,100);
point(100,100);
point(150,100);
 
The latter would be:
size(200,200);
point(width/4,height/2);
point(width/2,height/2);
point(3*width/4,height/2);
 
(these are just examples, not ideal coding style)
 
If your measurements are as a proportion of width and height, then simply resize your processing canvas to the required number of pixels... for a 10x10in drawing at 300dpi this will be 3000x3000 pixels though!  
 
Tell us more about your setup, we can probably help!
« Last Edit: Sep 16th, 2003, 1:08pm by TomC »  
benelek

35160983516098 WWW Email
Re: Homework help - enlarging then printing
« Reply #4 on: Sep 16th, 2003, 6:04pm »

mm, but things like points and strokes will not scale, while areas will. fortunately/unfortunately this is part of the separation of media types...
 
Pages: 1 

« Previous topic | Next topic »