Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 809 Bytes

File metadata and controls

24 lines (18 loc) · 809 Bytes

Bitmap Array file

This is a file format made for embedded devices such as Arduino Nano or ESP8266 to save images, fonts or animations made by me and @sutaburosu

Specifications

Offset Size (Bytes) Description
0x00 2 File signature ("bA")
0x02 2 Type of stored image data
0x04 2 Width: Image width in pixels (uint16_t).
0x06 2 Height: Image height in pixels (uint16_t).
0x08 - Data (Size depends on Width, Height and Type)

Types

Type bits per pixel addition description
b0 1 - raw monochrome bitmap, 1 = white
b1/b2/b3 8/16/24 - raw bitmap with set color depth
bw 8 - raw grayscale bitmap

Note

Palette and other types will be implemented