Files
processing4/java/examples/Basics/Image/LoadDisplayImage/LoadDisplayImage.pde
2011-09-18 06:30:55 +00:00

26 lines
717 B
Plaintext

/**
* Load and Display
*
* Images can be loaded and displayed to the screen at their actual size
* or any other size.
*/
// The next line is needed if running in JavaScript Mode with Processing.js
/* @pjs preload="moonwalk.jpg"; */
PImage img; // Declare variable "a" of type PImage
void setup() {
size(640, 360);
// The image file must be in the data folder of the current sketch
// to load successfully
img = loadImage("moonwalk.jpg"); // Load the image into the program
}
void draw() {
// Displays the image at its actual size at point (0,0)
image(img, 0, 0);
// Displays the image at point (0, height/2) at half of its size
image(img, 0, height/2, img.width/2, img.height/2);
}