Home/Guides/Converter
๐Ÿ—‚Converter

Converting Hundreds of Images at Once Without Regretting It

Batch conversion fails on ordering, naming and memory rather than formats. What to check before committing, and why resizing beats compressing.

8 min read

The job that is easy once and painful four hundred times

Converting one image is trivial. Converting an entire camera card, a product catalogue or a decade of phone photos is a different task, and the things that make it go wrong are not about image formats at all โ€” they are about ordering, naming, memory and the fact that you only find out something was wrong after you deleted the originals. This guide covers how to plan a batch, what to check before committing, and the specific traps in browser-based bulk conversion.

Decide the target once, properly

Every file in the batch gets the same treatment, so a wrong decision is multiplied by the file count. Three questions settle it:

  • Where are these going? A website wants WebP. An upload form or a client wants JPG. An editor wants PNG. Archives should keep the original.
  • Is there transparency anywhere in the set? One logo among three hundred photos is enough to make a blanket JPG conversion wrong โ€” that file comes out with a solid background and nobody notices until later.
  • Does anything downstream cap file size or dimensions? Resize during the batch rather than discovering the cap afterwards and running everything twice.

Run a single representative file through first, look at it at full size, and only then commit the batch. Five minutes of checking is cheaper than four hundred files at the wrong quality.

What actually decides the output size

LeverEffect on sizeEffect on how it looks
Halve the width and heightAbout 75% smallerInvisible if the display size is smaller than the new dimensions
JPEG quality 0.9 โ†’ 0.75About 40% smallerEssentially invisible on photographs
JPEG quality 0.75 โ†’ 0.5About 35% smaller againVisible blocking in skies and flat areas
JPG โ†’ WebP at equal quality25โ€“35% smallerNo visible difference
Strip EXIF metadataA few KB per fileNone, but loses date, camera and GPS
Convert photos to PNG3โ€“10ร— largerNone โ€” PNG is lossless, and wasteful here

The order matters: resize first, compress second. Dimensions are the cheapest saving by a wide margin, because quality loss from downscaling is invisible as long as the result is still larger than where it will be displayed, whereas quality loss from heavy compression is visible at any size.

Names, order and the things that break later

  • Sort order is not upload order. A tool typically processes files in the order the browser hands them over, which usually follows the file picker's sort. If the sequence matters โ€” scanned pages, a photo story โ€” check the ordering in the tool before converting, not after.
  • Numbers sort as text. img2.jpg comes after img10.jpg in a plain sort. Pad with zeros, img002.jpg, before you start, and the problem disappears permanently.
  • Duplicate base names collide. Converting photo.jpg and photo.png from different folders into the same format produces two files wanting the same name. Flatten and rename first.
  • Non-Latin filenames can be mangled by the ZIP step if any tool in the chain is old. Check one extracted file before trusting the whole archive.
  • Keep the originals until the batch is verified. Spot-check the first, middle and last file at full size. Conversion is irreversible and a wrong quality setting is only obvious in the details.

What EXIF carries, and whether to keep it

Photographs carry metadata: camera and lens, exposure settings, the date and time, and frequently GPS coordinates accurate to a few metres. Batch conversion is the moment to make a deliberate decision about it, because whatever you choose applies to everything.

  • Keep it for a personal archive. Losing capture dates means photo software falls back to file timestamps, and years of chronology collapse into the conversion date.
  • Strip it before publishing anywhere public. Home addresses have been revealed through photo GPS more times than is comfortable. Image Compressor drops metadata during re-encoding; JPG Compressor (Keep EXIF) is the opposite choice when you want it preserved.
  • Check what is there with the EXIF Data Reader on one representative file before deciding.

Practical limits of converting in a browser

Browser conversion has a real advantage for large batches โ€” nothing is uploaded, so there is no waiting on a network and no copy of your photos on someone's server โ€” and a real constraint: everything happens in your machine's memory, in one tab.

  • Batches of a few hundred typical photos are comfortable. Thousands of high-resolution files, or 50-megapixel images, can exhaust the tab's memory.
  • If a batch stalls or the tab reloads, split it into chunks of one or two hundred. The result is identical and each chunk finishes.
  • Keep the tab in the foreground. Background tabs get throttled, which can stretch a two-minute job into twenty.
  • Closing the tab loses the work. There is no server-side job to come back to.
  • Output arrives as a single ZIP, which avoids several hundred separate download prompts.

The Bulk Image Converter handles the batch and the ZIP. For a set that needs to land under a specific size limit rather than a quality setting, Compress to Target Size searches for the right quality per file instead of applying one guess to everything.

Frequently asked questions

How many files can I convert at once?

A few hundred ordinary photos is routine. The real limit is your device's memory, so large images reduce the count. Splitting into chunks always works.

Will the converted files keep their names?

Yes, with the new extension. Files that shared a base name will collide, so rename those before starting.

Can I convert mixed formats in one batch?

Yes โ€” HEIC, PNG, JPG and WebP can go in together and come out in one target format. Watch for transparency in the set if the target is JPG.

Does conversion happen on a server?

No. Every file is decoded and re-encoded in your browser, which is why a large batch is fast and why nothing leaves your device.

Why did some files get bigger?

Converting an already-efficient format to a less efficient one grows files. HEIC or WebP to JPG will usually increase size, and PNG output for photographs increases it dramatically.

Can I undo a batch conversion?

No. Keep the originals until you have checked the output โ€” this is the one habit that prevents every serious batch mistake.

Tools mentioned in this guide