Displays text using CircuitPython's displayio.
Project description
Introduction
This library decodes an image file into new bitmap and palette objects of the provided type. It’s designed to load code needed during decoding as needed. This is meant to minimize the memory overhead of the decoding code.
Only certain types of bitmaps work with this library, and they often have to be exported in specific ways. To find out what types are supported and how to make them, see this learn guide page.
Usage Example
import board
import displayio
import adafruit_imageload
image, palette = adafruit_imageload.load(
"images/4bit.bmp", bitmap=displayio.Bitmap, palette=displayio.Palette
)
tile_grid = displayio.TileGrid(image, pixel_shader=palette)
group = displayio.Group()
group.append(tile_grid)
board.DISPLAY.show(group)
while True:
pass
Contributing
Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.
Documentation
For information on building library documentation, please check out this guide.
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
Hashes for adafruit-circuitpython-imageload-0.12.8.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2a30339cc3fe32de4a487393a9debb1c6766958edfc9f8c4b1dd88b5f08f5a0 |
|
MD5 | fbb9c3c52c14661c29f0163b754f2890 |
|
BLAKE2b-256 | 147ea3a65338c81a2b771fe1fa4d1865b9c01a233f431616ff53edce109b1f69 |