Image Converter Microservice
Convert JPEG/PNG images to WebP format
Usage:
- POST /convert - Upload image file (multipart/form-data with "image" field)
- Query parameters:
- quality=0-100 (default: 80)
- lossless=true/false (default: false)
- GET /health - Health check
Example:
curl -X POST -F "image=@photo.jpg" "http://localhost:8080/convert?quality=90" --output photo.webp