mirror of
https://github.com/processing/processing4.git
synced 2026-01-30 11:51:54 +01:00
45 lines
1.1 KiB
Java
45 lines
1.1 KiB
Java
import processing.core.*;
|
|
import processing.xml.*;
|
|
|
|
import java.applet.*;
|
|
import java.awt.*;
|
|
import java.awt.image.*;
|
|
import java.awt.event.*;
|
|
import java.io.*;
|
|
import java.net.*;
|
|
import java.text.*;
|
|
import java.util.*;
|
|
import java.util.zip.*;
|
|
import java.util.regex.*;
|
|
|
|
public class LoadDisplayImage extends PApplet {
|
|
|
|
/**
|
|
* Load and Display
|
|
*
|
|
* Images can be loaded and displayed to the screen at their actual size
|
|
* or any other size.
|
|
*/
|
|
|
|
PImage a; // Declare variable "a" of type PImage
|
|
|
|
public void setup() {
|
|
size(200, 200);
|
|
// The file "jelly.jpg" must be in the data folder
|
|
// of the current sketch to load successfully
|
|
a = loadImage("jelly.jpg"); // Load the image into the program
|
|
noLoop(); // Makes draw() only run once
|
|
}
|
|
|
|
public void draw() {
|
|
// Displays the image at its actual size at point (0,0)
|
|
image(a, 0, 0);
|
|
// Displays the image at point (100, 0) at half of its size
|
|
image(a, 100, 0, a.width/2, a.height/2);
|
|
}
|
|
|
|
static public void main(String args[]) {
|
|
PApplet.main(new String[] { "LoadDisplayImage" });
|
|
}
|
|
}
|