Skip to content

Instantly share code, notes, and snippets.

@netdesign
Created December 11, 2011 00:04
Show Gist options
  • Save netdesign/1457196 to your computer and use it in GitHub Desktop.
Save netdesign/1457196 to your computer and use it in GitHub Desktop.
Image
PImage img;
void setup(){
size(640, 360);
img = loadImage("immagine.png");
smooth();
}
void draw(){
background(0);
image(img, 0, 0, img.width, img.height);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment