PImage img; int rowheight; int cols, rows; int counter = 0; int charcount = 0; String chars; PFont f; int index = 0; //Letter[] letters; ArrayList letters; int scl; //----------------------------------------- void setup() { size(600, 600); smooth(); framerate(10); img = loadImage("Nietzsche-Munch304x298.jpg"); println(img.width + " " + img.height); scl = width/img.width; f = loadFont("AmericanTypewriter-Bold-12.vlw"); String[] nText = loadStrings("nText.txt"); chars = join (nText, ""); //x=width; createGrid(12); } //----------------------------------------- void draw(){ background(0); for (int i = 0; i