@burnmark-io/designer-core / LabelBitmap
Interface: LabelBitmap
Defined in: node_modules/.pnpm/@mbtech-nl+bitmap@1.0.1/node_modules/@mbtech-nl/bitmap/dist/types.d.ts:10
A 1-bit-per-pixel bitmap. Row-major, MSB-first within each byte.
Memory layout: Row y, pixel x -> byte index: y * bytesPerRow + Math.floor(x / 8) -> bit index: 7 - (x % 8) (MSB = leftmost pixel)
A set bit (1) = black dot. A clear bit (0) = white dot.
Properties
data
readonlydata:Uint8Array
Defined in: node_modules/.pnpm/@mbtech-nl+bitmap@1.0.1/node_modules/@mbtech-nl/bitmap/dist/types.d.ts:13
heightPx
readonlyheightPx:number
Defined in: node_modules/.pnpm/@mbtech-nl+bitmap@1.0.1/node_modules/@mbtech-nl/bitmap/dist/types.d.ts:12
widthPx
readonlywidthPx:number
Defined in: node_modules/.pnpm/@mbtech-nl+bitmap@1.0.1/node_modules/@mbtech-nl/bitmap/dist/types.d.ts:11