mirror of
https://github.com/processing/processing4.git
synced 2026-01-29 11:21:06 +01:00
24 lines
497 B
Plaintext
24 lines
497 B
Plaintext
/**
|
|
* Create Image.
|
|
*
|
|
* The createImage() function provides a fresh buffer of pixels to play with.
|
|
* This example creates an image gradient.
|
|
*/
|
|
|
|
PImage img;
|
|
|
|
void setup() {
|
|
size(640, 360);
|
|
img = createImage(230, 230, ARGB);
|
|
for(int i = 0; i < img.pixels.length; i++) {
|
|
float a = map(i, 0, img.pixels.length, 255, 0);
|
|
img.pixels[i] = color(0, 153, 204, a);
|
|
}
|
|
}
|
|
|
|
void draw() {
|
|
background(0);
|
|
image(img, 90, 80);
|
|
image(img, mouseX-img.width/2, mouseY-img.height/2);
|
|
}
|