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

Composition of random rectangles with Processing. A randomized composition maker that will create shapes of a random size, filled with a random shade of grey, and place them in a random spot within the display window. The fill() function is passed a random number between 0 and 255 to determine the shade of grey. A ...continue reading "Rectilinear Randomized Composition"

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"

random lines processing

Create dynamic visuals with Processing. Creating compositions of random lines is easy with Processing. Lines of various shades of grey are drawn across the width of the frame inside a for loop. Random Lines, Black Background This first version creates an 800 x 600 display window with a black background. /*programmingisfun.com*/ size(800, 600); smooth(); background(0); ...continue reading "Random Lines with Processing"