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.
IndexProgramming Questions & HelpSyntax Questions › begining with processing
Page Index Toggle Pages: 1
begining with processing (Read 601 times)
begining with processing
Apr 6th, 2007, 1:53am
 
Hi, I'am new with processing.

I download some fasewarp code and it seem to make references to processing.core.PFont and PImage classes.

But after downloading processing for Windows I couldn't find those classes so,

Where can I download this classes?

Thanks,

Nuquen
Re: begining with processing
Reply #1 - Apr 6th, 2007, 10:04am
 
PFont and PImage are part of the core procesing library, you don't need to download them anywhere. You don't even need to import them, since processing does that itself. You should be able to just do:
Code:
PFont myFont=loadFont("Arial.vlw"); // assuming you've used the Create Font... menu
PImage=loadImage("myImage.jpg");
Page Index Toggle Pages: 1