-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Labels
BugError or unexpected behaviorsError or unexpected behaviorsHelp WantedWould love additional input or contributions!Would love additional input or contributions!Priority:HighShould be addressed soon but not criticalShould be addressed soon but not critical
Description
p5.js version
v1.10.0
What is your operating system?
Mac OS
Web browser and version
128.0.6613.137
Actual Behavior
The loadImage function is unable to fetch medium and large images immediately after uploading them to the project's files, with delays of several hours. Smaller images load successfully right away.

Expected Behavior
Ideally, the loadImage function would work for any image immediately after it is uploaded to the web editor, regardless of size.
Steps to reproduce
Snippet:
let photo;
function preload(){
photo = loadImage("photo.jpg");
}
function setup() {
createCanvas(400, 400);
image(photo,0,0);
}
function draw() {
}
Metadata
Metadata
Assignees
Labels
BugError or unexpected behaviorsError or unexpected behaviorsHelp WantedWould love additional input or contributions!Would love additional input or contributions!Priority:HighShould be addressed soon but not criticalShould be addressed soon but not critical