xxxxxxxxxx
48
/*
This artwork is made for Pameran Adikara Rupa
Coding by Arya Harditya
*/
let img;
let step = 10;
let noiseScale = 0.0001;
let noiseLevel = 100;
function preload() {
img = loadImage("images/PixelText.jpg");
}
function setup() {
createCanvas(4960, 7016);
// createCanvas(1754, 2480);
// createCanvas(600, 600);
background(0);
rectMode(CENTER);
image(img, 0, 0);
}
function draw() {
noiseLevel = width;
img.loadPixels();
for (let i = 0; i < img.width; i += step) {
for (let j = 0; j < img.height; j += step) {
let colorSwap = img.get(i, j);
let nx = noiseScale * i;
let ny = noiseScale * j;
let n = noiseLevel * noise(nx, ny);
noStroke();
fill(colorSwap);
square(i, j, n);
}
}
noiseScale += 0.00001;
}
function keyPressed() {
if (key === "s") {
saveFrames("frame", "png", 1, 60);
}
}