Tested tool guide
Tested browser tools
Checked August 15, 2026
What Batch Image Format Converter does, with a checked example
This tool takes a batch of images you drop in - any mix of PNG, JPG, WebP, or AVIF source files - and re-encodes each one into whichever target format and quality you choose, then bundles all the results into a single ZIP you download in one go. Conversion happens by drawing each image onto a canvas and exporting it in the new format, so files never leave your browser. The most common surprise: AVIF encoding isn't supported in every browser, and converting a PNG or WebP with transparency to JPG silently fills the transparent areas solid, since JPG has no alpha channel.
Worked example
A concrete input and expected output from the current implementation.
Input
3 files dropped in: photo1.png, photo2.png, icon.png (icon.png has a transparent background) - target format WebP, quality 80
->
Expected output
download.zip containing photo1.webp, photo2.webp, icon.webp, each re-encoded at quality 80. icon.webp keeps its transparent background.
Base filenames are preserved, only the extension changes to .webp - but the pixel data itself is not untouched, since quality 80 is a lossy WebP setting and canvas re-encoding also drops metadata such as EXIF tags and embedded color profiles. WebP supports an alpha channel like PNG, so icon.png's transparency carries over intact, which would not happen if the target were JPG.