load image from web
in
Android Processing
•
3 years ago
Hi there,
I'm trying to simply load an image from the web, but somehow it doesn't work on my mobile. using this code:
cheers+thanks
Timm
I'm trying to simply load an image from the web, but somehow it doesn't work on my mobile. using this code:
- PImage img1;
void setup(){
size(575, 370);
img1 = loadImage("http://www.wollle.com/images/stories/interactive/schaller_seite_old.jpg");
}
void draw(){
image(img1, 0, 0);
}
cheers+thanks
Timm
3