a decoded 8x8 tile.
import std.string : representation; const data = Simple1BPP(import("bpp1-sample1.bin").representation[0 .. 8]); const ubyte[8][8] finaldata = [ [0, 1, 0, 0, 0, 0, 1, 0], [0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 1, 1], [0, 1, 1, 1, 0, 0, 0, 1], [0, 1, 0, 1, 1, 1, 1, 1], [0, 1, 0, 1, 1, 1, 1, 1], [0, 0, 1, 0, 1, 1, 1, 1], [0, 0, 0, 1, 1, 1, 1, 0]]; assert(data.pixelMatrix() == finaldata);
1 bit per pixel tile format. Commonly used by many platforms.