Python image processing library for creating and manipulating images
Friendly PIL fork (Python Imaging Library)
pythonpython3$ python3 -c "from PIL import Image; img = Image.open('input.jpg'); img.save('output.png')"$ python3 -c "from PIL import Image; img = Image.open('photo.jpg'); resized = img.resize((800, 600)); resized.save('photo_resized.jpg')"$ python3 -c "from PIL import Image; img = Image.new('RGB', (400, 300), color='red'); img.save('red_square.png')"