Save a displayio.Bitmap (and associated displayio.Palette) into a BMP file.
Project description
Introduction
Save a displayio.Bitmap (and associated displayio.Palette) into a BMP file.
Dependencies
This driver depends on:
CircuitPython 5.0 or later is required.
Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle.
Installing from PyPI
On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. To install for current user:
pip3 install adafruit-circuitpython-bitmapsaver
To install system-wide (this may be required in some cases):
sudo pip3 install adafruit-circuitpython-bitmapsaver
To install in a virtual environment in your current project:
mkdir project-name && cd project-name
python3 -m venv .venv
source .venv/bin/activate
pip3 install adafruit-circuitpython-bitmapsaver
Usage Example
import board
import busio
import digitalio
from displayio import Bitmap, Palette
import adafruit_sdcard
import storage
from adafruit_bitmapsaver import save_pixels
print('Setting up SD card')
spi = busio.SPI(board.SCK, MOSI=board.MOSI, MISO=board.MISO)
cs = digitalio.DigitalInOut(board.SD_CS)
sdcard = adafruit_sdcard.SDCard(spi, cs)
vfs = storage.VfsFat(sdcard)
storage.mount(vfs, "/sd")
WHITE = 0xFFFFFF
BLACK = 0x000000
RED = 0xFF0000
ORANGE = 0xFFA500
YELLOW = 0xFFFF00
GREEN = 0x00FF00
BLUE = 0x0000FF
PURPLE = 0x800080
PINK = 0xFFC0CB
colors = (BLACK, RED, ORANGE, YELLOW, GREEN, BLUE, PURPLE, WHITE)
print('Building sample bitmap and palette')
bitmap = Bitmap(16, 16, 9)
palette = Palette(len(colors))
for i, c in enumerate(colors):
palette[i] = c
for x in range(16):
for y in range(16):
if x == 0 or y == 0 or x == 15 or y == 15:
bitmap[x, y] = 1
elif x == y:
bitmap[x, y] = 4
elif x == 15 - y:
bitmap[x, y] = 5
else:
bitmap[x, y] = 0
print('Saving bitmap')
save_pixels('/sd/test.bmp', bitmap, palette)
Documentation
API documentation for this library can be found on Read the Docs.
For information on building library documentation, please check out this guide.
Contributing
Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file adafruit-circuitpython-bitmapsaver-1.3.0.tar.gz
.
File metadata
- Download URL: adafruit-circuitpython-bitmapsaver-1.3.0.tar.gz
- Upload date:
- Size: 126.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54b5411dc6424b5683a79d9bdbd5b42d5f1b1ac55eec7754a6118958dec2e0ff |
|
MD5 | 8fc7f39717c19ffc8639a1e6400859a2 |
|
BLAKE2b-256 | 9d151e9e271b5e3d801fff80b9157753b7d8988dacaf0558d32c122c1d2ebe2d |
File details
Details for the file adafruit_circuitpython_bitmapsaver-1.3.0-py3-none-any.whl
.
File metadata
- Download URL: adafruit_circuitpython_bitmapsaver-1.3.0-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 496d02f5af217b631f983e556a4db240a9524074246a7771d66b530483e3e338 |
|
MD5 | f9edaa1b0efecbde077970a0695433a3 |
|
BLAKE2b-256 | f1a6572dbceafab1d016da2a4b1c81c763dd8a9d29edd1610cbd980aeb2eb241 |