Can I upload an image to the web?

I managed it with an image that I stored on Pinterest with the method I described previously.

PImage img; 

void setup() { 
  size(250, 200); 
  img = loadImage("https://i.pinimg.com/236x/d9/63/aa/d963aa82a6b11b236543d0a3a0842e50.jpg"); 
  image(img, 0, 0);
}
3 Likes