xxxxxxxxxx
37
var myAsciiArt;
var asciiart_width = 120;
var asciiart_height = 60;
var images = [];
var gfx;
var ascii_arr;
var cyclic_t;
function preload() {
images[0] = loadImage("person.jpeg");
}
function setup() {
createCanvas(480, 640);
gfx = createGraphics(asciiart_width, asciiart_height);
gfx.pixelDensity(1);
myAsciiArt = new AsciiArt(this);
myAsciiArt.printWeightTable();
textAlign(CENTER, CENTER);
textFont("monospace", 8);
textStyle(NORMAL);
noStroke();
fill(255);
frameRate(30);
}
function draw() {
background(0);
cyclic_t = (millis() * 0.0002) % images.length;
gfx.image(images[floor(cyclic_t)], 0, 0, gfx.width, gfx.height);
gfx.filter(POSTERIZE, 3);
ascii_arr = myAsciiArt.convert(gfx);
myAsciiArt.typeArray2d(ascii_arr, this);
}