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')

# Resize keeping aspect ratio
img.thumbnail((800, 800), Image.LANCZOS)
img.save('thumbnail.jpg')
print('Done')
Related skills

More from thinkfleetai/thinkfleet-engine

Installs
1
First Seen
Mar 1, 2026