image-processing
Installation
SKILL.md
Image Processing
Image manipulation using Python and Pillow (PIL).
Resize image
python3 -c "
from PIL import Image
img = Image.open('input.jpg')
# Resize to specific dimensions
resized = img.resize((800, 600), Image.LANCZOS)
resized.save('resized.jpg')