Use the buttons and sliders. Press any key to save image.
A fork of Image Crossfader by Richard Bourne
xxxxxxxxxx
let image1;
function preload(){
image1=loadImage('starryNight.png');
}
function setup() {
createCanvas(400,400);
//imageMode(CENTER);
}
function draw() {
background(220);
//imageMode(CENTER);
//let ratio=img.width/img.height;
image(image1,mouseX, mouseY);
//imageMode(CORNER);
}
//rectMode(CENTER);
//square(100,200,50);
//rect(200,200,60,30);
//image(img,100,100,100*ratio,100);