Could not find the image...
in
Android Processing
•
1 years ago
Hi!
Today I started with processing for android and I try to put a image as background, but when i run the program in my device, the console say:"Could not find the image prueba.png"
i try change the location image but still does not work.Any idea why this happens I?
My code:
- PImage bg;
- void setup()
- {
- size(500,664);
- bg=loadImage("prueba.png");
- }
- void draw()
- {
- background(bg);
- }
1