[PYTHON] Bildreduktion (LED-Matrix-Panel 16 x 32)

Reduzieren Sie die ppm-Datei, um ein Bild zu erstellen, das auf dem RGB-Matrixfeld 16x32 angezeigt wird.

1. Bibliothek

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}")

2. Führen Sie aus

python resize.py

Recommended Posts

Bildreduktion (LED-Matrix-Panel 16 x 32)
Steuern Sie das Matrix-LED-Panel von ROS aus
Bildreduktion (LED-Matrix-Panel 16 x 32)
Steuern Sie das Matrix-LED-Panel von ROS aus
Steuern Sie das Matrix-LED-Panel von ROS aus