Image Optimizer

Drag & drop an image here, or

Advanced resize (optional)

Leave both fields empty to keep the original size.


💡 Show API usage examples (cURL)

Optimize PNG without resizing

curl -sS -X POST https://devops.majbase.com/image/tinify \
    -F "file=@test.png" \
    -o optimized_test.png

Optimize and resize image

curl -sS -X POST https://devops.majbase.com/image/tinify \
    -F "file=@photo.jpg" \
    -F "width=1024" \
    -F "height=1024" \
    -o optimized_photo.jpg

Example with WEBP

curl -sS -X POST https://devops.majbase.com/image/tinify \
    -F "file=@image.webp" \
    -F "width=800" \
    -F "height=800" \
    -o cleaned.webp