Simple1BPP

1 bit per pixel tile format. Commonly used by many platforms.

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[8] raw;
Undocumented in source.

Return Value

a decoded 8x8 tile.

Examples

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);

Meta