Intertwined2BPP

Undocumented in source.

Members

Functions

pixelMatrix
ubyte[8][8] pixelMatrix()
Undocumented in source. Be warned that the author may not have intended to support it.
toBase64
string toBase64()
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

raw
ubyte[16] raw;
Undocumented in source.

Examples

import std.string : representation;
const data = Intertwined2BPP(import("bpp2-sample2.bin").representation[0 .. 8 * 2]);
const ubyte[][] finaldata = [
	[0, 3, 2, 2, 2, 2, 3, 2],
	[0, 0, 3, 2, 2, 2, 2, 2],
	[0, 0, 3, 3, 3, 0, 3, 3],
	[0, 3, 3, 3, 0, 0, 0, 3],
	[0, 3, 0, 3, 3, 3, 3, 3],
	[0, 3, 0, 3, 3, 3, 3, 3],
	[0, 0, 3, 0, 1, 1, 3, 3],
	[0, 0, 0, 3, 1, 1, 3, 2]];
assert(data.pixelMatrix() == finaldata);

Meta