![]() |
FAQ |
||
|
||||||||||||||||
|
|
|
| Examples for Processing (BETA) version 91+. If you have a previous version, use the examples included with your software. If you see any errors or have comments, please let us know. |
|
Background image by REAS <http://reas.com> This example presents the fastest way to load a background image into Processing. Created 16 January 2003 |
||
|
|
// Background image
// by REAS <http://reas.com>
PImage bg;
int a;
void setup()
{
size(200,200);
framerate(30);
// The background image must be the same size as the parameters
// into the size() method. In this program, the size of "milan_rubbish.jpg"
// is 200 x 200 pixels.
bg = loadImage("milan_rubbish.jpg");
}
void draw()
{
background(bg);
a = (a + 1)%(width+32);
stroke(226, 204, 0);
line(0, a, width, a-26);
line(0, a-6, width, a-32);
}
|
| |
||
| Processing is an open project initiated by Ben Fry and Casey Reas | ||
| © Info |