xxxxxxxxxx
32
let logo;
P5Capture.setDefaultOptions({
format: "png",
quality: 1,
width: 1080,
});
function preload() {
logo = loadImage('logo-horizontal.png');
}
function setup() {
createCanvas(540, 960); // instagram reel is 1080x1920
// noLoop();
pixelDensity(3);
}
function draw() {
background(240);
// if (frameCount === 1) {
// const capture = P5Capture.getInstance();
// capture.start({
// duration: 350,
// });
// }
// draw the logo
sizeDivision = 18;
image(logo, (width / 2) - logo.width / (sizeDivision * 2), height - 50, logo.width / sizeDivision, logo.height / sizeDivision);
}