Public
Edited
Nov 10, 2023
Insert cell
Insert cell
Insert cell
Insert cell
imageURL = await FileAttachment("storm@1.jpg").url();
Insert cell
p5((s) => {
let image;
s.preload = function () {
image = s.loadImage(imageURL);
};

s.setup = function () {
s.createCanvas(width, height);
};

s.draw = function () {
// draw image: s.image(image, x, y)
s.image(image, 0, 0);
};
})
Insert cell
Insert cell
p5((s) => {
let image;
s.preload = function () {
image = s.loadImage(imageURL);
};

s.setup = function () {
s.createCanvas(width, height);
};

s.draw = function () {
// draw image: s.image(image, x, y, width, height)
s.image(image, 0, 0, width, height);
};
})
Insert cell
p5((s) => {
let image;
s.preload = function () {
image = s.loadImage(imageURL);
};

s.setup = function () {
s.createCanvas(width, height);
// resize image
image.resize(width, height)
};

s.draw = function () {
// draw image: s.image(image, x, y)
s.image(image, 0, 0);
};
})
Insert cell
Insert cell
p5((s) => {
let image;
s.preload = function () {
image = s.loadImage(imageURL);
};

s.setup = function () {
s.createCanvas(width, height);
// resize image
image.resize(width, 5)
image.resize(width, height)
};

s.draw = function () {
// draw image: s.image(image, x, y)
s.image(image, 0, 0);
};
})
Insert cell
p5((s) => {
let image;
s.preload = function () {
image = s.loadImage(imageURL);
};

s.setup = function () {
s.createCanvas(width, height);
// resize image
image.resize(width, 5)
s.noSmooth()
};

s.draw = function () {
// draw image: s.image(image, x, y)
s.image(image, 0, 0, width, height);
};
})
Insert cell
Insert cell
p5((s) => {
let image;
s.preload = function () {
image = s.loadImage(imageURL);
};

s.setup = function () {
s.createCanvas(width, height);
let ratio = s.min(width / image.width, height / image.height)
// let ratio = s.max(width / image.width, height / image.height)
image.resize(image.width * ratio, image.height * ratio)
};

s.draw = function () {
s.image(image, 0, 0);
};
})
Insert cell
p5((s) => {
let image;
s.preload = function () {
image = s.loadImage(imageURL);
};

s.setup = function () {
let ratio = width / image.width
s.createCanvas(width, image.height * ratio);
image.resize(image.width * ratio, image.height * ratio)
};

s.draw = function () {
s.image(image, 0, 0);
};
})
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more