Processing Bilder einfügen

was mach ich falsch ?  - (Bilder, Processing)

1 Antwort

Wenn du processing öffnest und im programm bist zieh es einfach per drag and drop auf processing also auf dein Programm

Bespiel Code

PImage bild;

void setup(){

size(500,500);

bild = loadImage("bild.png");

}

void draw(){

image(bild,0,0); // image(name,x,y); / Eventuel image(name,x,y,breite,höhe);

}

Viel Glück ;)