We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hello. How can I add a border to an image?
You could just draw a rectangle around it with the rect function
stroke(0); rect(ImageX, ImageY, Image.width, Image.height);
where ImageX is the X position of your image and the ImageY the Y position of your image.
....maybe with noFill();
Answers
You could just draw a rectangle around it with the rect function
where ImageX is the X position of your image and the ImageY the Y position of your image.
....maybe with noFill();