xxxxxxxxxx
19
const url =
"https://origin-east-01-drupal-fishwatch.woc.noaa.gov/sites/default/files/4_9.jpg";
fetch(url, {})
.then((response) => response.blob())
.then((imageBlob) => {
// Then create a local URL for that image and print it
const imageObjectURL = URL.createObjectURL(imageBlob);
console.log(imageObjectURL);
});
function setup() {
createCanvas(400, 400);
// loadImage(url, (img) => {
// console.log(img);
// });
}