I have been working with processing and p5 for many years now and realized I have written the same, or very similar code all the time. When it comes to the topic of generating single static images, that highly depend on randomized geometry, texture and colors I have been copying and merging code between my projects. For this repository it is my goal to make these methods not only reusable for myself but to share it with you guys. It's a personal collection of methods and concepts I use for my artistic generative images on my instagram, webiste and blog. These effects could be useful for artists, designers and fellow creative coders. The collection contains methods for colors, numbers, pixels, textures and hatches. See a short overview below or browse the type docs for a detailed information. The script adds a globally available class constructor called Effects
to your disposal. The intended use is to locally create a new instance in setup()
and use it's methods via the dot-syntax. Include the script in index.html
and use it in sketch.js
. Please be aware that this is a ongoing collection and it might change dramatically without warnings.
<!-- index.html -->
<script src="p5-global-effects.min.js" defer></script>
<script src="sketch.js" defer></script>
// sketch.js
function setup() {
// Create the 'main' canvas
createCanvas(800, 400);
// Effects: 'this' p5 sketch is passed as argument
const effects = new Effects(this);
// I start with defining random colors
const brand = effects.colors.any();
const bright = effects.colors.bright();
const dark = effects.colors.dark();
// Then I define some colorful hatches
// All hatches take width, height, density, color and weight
// A new p5.Graphics buffer with the hatch is returned to the variable
const grain = effects.hatches.grain(width, height, random(), brand, random(3));
const stripes = effects.hatches.stripes(width, height, random(), dark, random(3));
const bars = effects.hatches.bars(width, height, random(), dark, random(3));
// Rendering with ps's image() function
background(bright);
image(grain, 0, 0);
image(stripes, 0, 0);
image(bars, 0, 0);
// Post process?
image(effects.pixels.glitch(this.get()), 0, 0);
}
probability(val)
Returns true if val is larger than -random()
sometimes()
Returns true with 0.5 probabilityoften()
Returns true with 0.9 probabilityrarely()
Returns true with 0.1 probability
fuzzy(val)
A slightly changed or dramtically reduced valueoffset(val, off)
A value changed by -off minimally and+off maximallyrandom
A value between zero and one
any()
A random colorbright()
A bright random colordark()
A dark random colorshade(col)
A random deviation from a given coloranySet(len)
An array with a fixed number of random colorsshadeSet(len)
An array with a fixed number of deviations from a given color
bars(width, height, density, col)
Vertical lines instripes(width, height, density, col)
Horizontal linescorroded(width, height, density, col)
A grid of randomized linesdots(width, height, density, col)
A grid of pointsgrain(width, height, density, col)
Random points
spread(buffer
Randomly spread colors within the current row.fuzzed(buffer)
Less spreaded colors within the current row.glitch(buffer)
A bunch of overlays with pixel sorting and reversinglinify(buffer)
A grid of lines with atributes mapped to colorsmosaic(buffer
Slices the given buffer in a grid and colors the cellspuzzle(buffer
Slices the given buffer in a smaller images and rearrangesshift(buffer
Similar to glitch but differentshrink(buffer
Shrinks the image into itself a number of times
circles
striped
- Load an image: https://p5js.org/reference/#/p5/loadImage
- Display images (or buffers): https://p5js.org/reference/#/p5/image
- Graphics buffers: https://p5js.org/reference/#/p5/createGraphics
- Color: https://p5js.org/reference/#/p5/color
- How p5 works generally: https://github.com/processing/p5.js/wiki/Global-and-instance-mode
This will install the node modules I use for the development. You can check the package.json for a full list. Briefly said it will install a very simple Webpack/Typescript/p5 setup for you. Having said that, because sometimes it can be strange with node modules...
# Clone the repository
git clone [email protected]:matthias-jaeger-net/p5-toolkit.git
# Navigate in the directory
cd p5-toolkit
# Install the development tools
npm install
# This generates the minified file in /dist/
npm run build
# This outputs the raw commonjs modules, not used currently
npm run compile
# Have no unit tests so far...
npm run test
# This generates api docs from typescript /src
npm run docs