Skip to content

random composition processing java

Create a random composition with Processing and Java. In a previous random image composition maker images were loaded in based on a random number and relied on the images being named as numbers (such as "01.png"). Using java.io.File we can make a composition maker that has more flexibility in loading images; it doesn't rely on ...continue reading "Random Image Composition via Directory List"

random composition processing

Compositions from randomly loaded images using Processing. Create a composition with randomly chosen and placed images. A variable in the Sketch (numberImages) tracks the number of images that the two random ones will be drawn from. int numberImages = 5; The loadImage() function randomly selects a number within the range of images available (in this ...continue reading "Random Image Composition"