static int smallBWImageToInt(BWImage img) { int w = img.getWidth(), h = img.getHeight(); int pattern = 0; for y to h: for x to w: pattern = (pattern << 1) | (img.getInt(x, y) >> 7); ret pattern; }