Zum Inhalt

Factsheet: Pillow

Gruppe: Programmierung

Zweck

Pillow ist die freundliche Abspaltung der Python Imaging Library (PIL) und bietet umfassende Funktionen zur Bildbearbeitung in Python. KI-Agenten nutzen Pillow zur Vorverarbeitung von Trainingsdaten, zur Formatanpassung oder zur Generierung von Visualisierungen.

Eigenschaft Wert
Latest 11.0.0
LTS N/A
Reifegrad Stabil (Aktiv gewartet, v12.2.0 Stand April 2026)
Technische Schulden Gering
Erwartetes Lebensende Kein EOL bekannt
Referenzhandbuch python-pillow.org
Wikipedia en.wikipedia.org/wiki/Python_Imaging_Library

Installation (Ubuntu 24.04)

pip install Pillow

Hello World

from PIL import Image
img = Image.new('RGB', (100, 100), color='red')
img.save('hello.png')

Beispieldaten

Die folgenden Beispieldaten befinden sich im Ordner examples/:

  • test.py
  • image.png
  • image.jpg
  • convert.py
  • info.py

Validierung

Python-Skript testen:

python3 factsheets/programmierung/pillow/examples/test.py