Randomly delete segments of "text" in a jpeg and then re-save for glitch effect?
in
Programming Questions
•
5 months ago
Hey,
Ideas?
- String[] lines;
int index = 0;
void setup() {
size(200, 200);
background(0);
stroke(255);
frameRate(12);
lines = loadStrings("veil.jpg");
//lines[int(random(0, lines.length))] = " ";
saveStrings("veil.jpg", lines);
}
Ideas?
1