A PVRTC decoder for PIL
Project description
PVRTC Decoder
A PVRTC decoder for PIL.
The decoder uses PVRTDecompress from PVRCore to decompress the data.
Installation
- Cython required
PIP
pip install pvrtc_decoder
Manual
python setup.py install
Usage
do2bit_mode:
- 0 - PVRTC2 (8 bit)
- 1 - PVRTC4 (16 bit)
PIL.Image decoder
from PIL import Image
import pvrtc_decoder
#needs to be imported once in the active code, so that the codec can register itself
raw_pvrtc_image_data : bytes
do2bit_mode = 0 # see above
img = Image.frombytes('RGBA', size, raw_pvrtc_image_data, 'pvrtc', (do2bit_mode))
raw decoder
from pvrtc_decoder import decompress_pvrtc, decompress_etc
# compressed PVRTC image bytes to RGBA bytes
rgba_data = decompress_pvrtc(compressed_data : bytes, do2bit_mode : int, width : int, height : int)
# compressed ETC image bytes to RGBA bytes
# mode seems to be unused, so use any value you want
rgba_data = decompress_etc(src_data : bytes, width : int, height : int, mode : int)
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
pvrtc_decoder-1.0.2.tar.gz
(46.0 kB
view hashes)
Built Distribution
Close
Hashes for pvrtc_decoder-1.0.2-cp37-cp37m-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 675e7dce5e179793583abc7349bae8f3c6563c2bdd225ace4bfd2ad47ef84a01 |
|
MD5 | cc9329c0c277d26a9f4f1a0290cc2a59 |
|
BLAKE2b-256 | 853c29e5fec3c0641739122658c7b82a195c4da694feead1659607e3dacb138e |