Image Converter vs Image Resizer & Cropper
Image Converter
Convert images between PNG, JPEG, WebP, AVIF, TIFF, GIF, and SVG formats
Upload an image and convert it to another format. Supports PNG, JPEG, WebP, AVIF, TIFF, GIF as both input and output; SVG is accepted as input only. Maximum input size is 3 MB. Returns the converted image as a base64 string along with dimensions and file size.
Example input:
{
"image": "<base64-png>",
"from": "png",
"to": "webp",
"quality": 80
}Image Resizer & Cropper
Resize, crop, rotate, and flip images online — free, runs in your browser, no upload required.
Upload any image to resize it to exact pixel dimensions, crop a region, rotate by 90-degree increments, or flip horizontally/vertically. Supports PNG, JPEG, WebP, AVIF, GIF input. Outputs PNG, JPEG, or WebP. The browser UI uses Canvas API — no image leaves your device.
Example input:
{
"image": "<base64-image>",
"width": 400,
"fit": "inside",
"format": "png"
}| Feature | Image Converter | Image Resizer & Cropper |
|---|---|---|
| Category | conversion | conversion |
| Inputs | image, from, to, quality | image, width, height, fit, cropX, cropY, cropWidth, cropHeight, rotate, flipHorizontal, flipVertical, format, quality |
| Outputs | image, format, width, height, size_bytes | image, format, width, height, originalWidth, originalHeight, sizeBytes |