Loading...
Logo
Processing Forum
hi, how to load a picture or video using an interface, ? ........boton...etc

eg


Replies(5)

What do you mean by "interface"? And by "boton"?
Base:
Image: loadImage()
video: use the video library.
Try this:



void setup() {

    
  String loadPath = selectInput();
if (loadPath == null) {
  println("error");
} else {
  println(loadPath);
}
 
  PImage img = loadImage(loadPath);
 size(img.width,img.height);
 image(img,0,0);

}
Tip:


When you ask a question, please do try to write proper English. Start with a small introduction to your problem, show examples, show your code, and already think of some options yourself.
thanks, is what I wanted. I try not to dwell much and be precise and concise, as my mother tongue is Spanish.

Greetings!