xxxxxxxxxx
31
const MAX = 550;
let new_img;
function preload() {
img = loadImage('./assets/lindseyfreeman.co.png');
}
function setup() {
createCanvas(600, 600);
}
function keyPressed() {
var new_width, new_height = resizeImage();
if (new_width >= MAX || new_height >= MAX) {
new_img = image(img.resize(new_width, new_height), 20, 20);
new_img.save('assets/new', 'png');
}
else {
new_img = image(img, 20, 20);
new_img.save('assets/new', 'png');
}
}
function draw() {
background(225);
image(img, 0, 0);
}