|
1 | 1 | # Image2Bitmap |
2 | | -Tool for convert images to different bitmap formats |
3 | | -Usable for Arduino or other controllers. |
| 2 | +Image to byte array (bitmap) converter. |
| 3 | +Usable for Arduino, STM32, ESP8266, RaspberryPI, OrangePI and other controllers with small LCD screens like PCD8544, SSD1306 and others. |
4 | 4 |
|
5 | 5 |  |
6 | 6 |
|
7 | | -### Supported export formats: |
8 | | -- [X] Monochrome, 8 pixels/byte, Horisontal scan |
9 | | -- [X] Monochrome, 8 pixels/byte, Vertical scan (Most Nokia lcd/tft) |
10 | | -- [X] Color, RGB332 (8 bit: RRRGGGBB) |
11 | | -- [X] Color, RGB565 (16bit: RRRRRGGGGGGBBBBB) |
12 | | -- [ ] Color, RGB444 (16bit: ----RRRRGGGGBBBB) |
| 7 | +## [Download windows binary](//github.com/FoxExe/Image2Bitmap/releases/latest) |
| 8 | + |
| 9 | +### Supported conversion formats: |
| 10 | +- [X] Monochrome, 8 pixels/byte, Horisontal byte compression |
| 11 | +- [X] Monochrome, 8 pixels/byte, Vertical byte compression (PCD8544 / Nokia 3310/5110 LCD) |
| 12 | +- [X] Color, RGB332 (8 bit: RRRGGGBB, 256 colors) |
| 13 | +- [X] Color, RGB444 (16bit: ----RRRRGGGGBBBB, 4096 colors) |
| 14 | +- [X] Color, RGB565 (16bit: RRRRRGGGGGGBBBBB, 65536 colors) |
13 | 15 |
|
14 | 16 | ### TODO: |
15 | | -- [X] Two-way conversion (Analyse byte array and convert it to image) |
16 | | -- [ ] Zoom/crop preview |
| 17 | +- [X] Two-way conversion (Image-to-byteArray and byteArray-to-Image) |
| 18 | +- [X] Zoom/crop preview |
17 | 19 | - [ ] More formats? |
0 commit comments