Skip to content

Commit 4da64ce

Browse files
authored
Simple README
1 parent c5a3990 commit 4da64ce

1 file changed

Lines changed: 22 additions & 1 deletion

File tree

README.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,22 @@
1-
Binary Animation file
1+
# Bitmap Array file
2+
3+
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](http://github.com/sutaburosu)
4+
5+
## Specifications
6+
7+
| Offset | Size (Bytes) | Description |
8+
|---|---|---|
9+
| 0x00 | 2 | File signature ("bA") |
10+
| 0x02 | 2 | Type of stored image data |
11+
| 0x04 | 2 | Width: Image width in pixels (uint16_t). |
12+
| 0x06 | 2 | Height: Image height in pixels (uint16_t). |
13+
| 0x08 | - | Data (Size depends on Width, Height and Type) |
14+
15+
## Types
16+
17+
| Type | bytes per pixel | addition | description |
18+
|---|---|---|---|
19+
| b1/b2/b3 | 1/2/3 | - | raw bitmap with set color depth |
20+
21+
> [!NOTE]
22+
> B&W, monochrome, palette and other types will be implemented

0 commit comments

Comments
 (0)