Files
SymbRaster/sketch.js

16 lines
250 B
JavaScript
Raw Normal View History

2025-02-03 12:19:01 +01:00
let img;
// Load the image.
function preload() {
img = loadImage('/assets/mona-lisa.jpg');
}
2025-02-03 12:05:46 +01:00
function setup() {
createCanvas(400, 400);
2025-02-03 12:19:01 +01:00
// Display the image.
img.resize(0, 400);
image(img, 0, 0);
describe('Mona lisa - by Davincci');
}