here… this works for me…
//
PImage pg1;
void setup() {
size(1222, 1222);
String s1=dataPath("");
println(s1);
pg1 = loadImage(s1+"//"+"2016.jpg");
}
void draw() {
image(pg1,
22, 22);
}
//
here… this works for me…
//
PImage pg1;
void setup() {
size(1222, 1222);
String s1=dataPath("");
println(s1);
pg1 = loadImage(s1+"//"+"2016.jpg");
}
void draw() {
image(pg1,
22, 22);
}
//