import std.string : representation; const data = Intertwined3BPP(import("bpp3-sample1.bin").representation[0 .. 24]); const ubyte[8][8] finaldata = [ [0x0, 0x7, 0x2, 0x6, 0x6, 0x6, 0x7, 0x2], [0x0, 0x0, 0x7, 0x6, 0x6, 0x6, 0x6, 0x6], [0x0, 0x0, 0x7, 0x7, 0x7, 0x0, 0x7, 0x7], [0x0, 0x7, 0x7, 0x7, 0x0, 0x0, 0x0, 0x7], [0x0, 0x7, 0x0, 0x7, 0x7, 0x7, 0x7, 0x7], [0x0, 0x7, 0x0, 0x7, 0x7, 0x7, 0x7, 0x7], [0x0, 0x0, 0x7, 0x0, 0x1, 0x1, 0x7, 0x7], [0x0, 0x0, 0x0, 0x7, 0x1, 0x1, 0x7, 0x2] ]; assert(data.pixelMatrix() == finaldata);
3 bit per pixel tile format with palette. Each row has its bitplanes stored adjacent to one another. Commonly used by the SNES.