Process images
at queue speed

Upload → queue → process → download. Built on Bull + Sharp + Redis. Real-time progress via WebSocket. Open Dashboard →

📁
Drop image here or click to browse
JPEG, PNG, WebP, AVIF, TIFF, GIF — max 20MB

Operations (click to add, order matters)

queued
Waiting...

API Usage

# Submit a job curl -X POST /api/jobs \ -F "file=@photo.jpg" \ -F 'operations=[{"op":"resize","params":{"width":800}},{"op":"convert","params":{"format":"webp"}},{"op":"compress","params":{"quality":75}}]' # Poll status curl /api/jobs/:jobId # Download result curl -O /api/jobs/:jobId/download # List available operations curl /api/operations