Reduzieren Sie die ppm-Datei, um ein Bild zu erstellen, das auf dem RGB-Matrixfeld 16x32 angezeigt wird.
pip install Pillow
resize.py
encoding:UTF-8
#-*- codinf:utf-8 -*-
from PIL import Image
img = Image.open("{Vor der Konvertierung JPG-Datei}")
width, height = img.size
img = img.resize((int(img.width / (img.height / 16 )), 16))
img.save("{Konvertierte ppm-Datei}")
python resize.py