Tested tool guide
Tested browser tools
Checked August 16, 2026
What Bulk Image Resizer does, with a checked example
This tool resizes a whole batch of images in a single pass, applying one target - a percentage like 50%, or a fixed width and height in pixels - to every file at once. Mixed folders (phone photos, scans, exported art) come out at one size without opening each image in an editor. The common surprise: pixel dimensions and file size are different things. A 2000-pixel-wide PNG can weigh more than the 4000-pixel JPEG it came from, because the output format and its compression, not the pixel count, decide how many bytes the result occupies. The whole job runs in the browser, so the images never leave your machine.
Worked example
A concrete input and expected output from the current implementation.
Input
A batch of two JPEGs - photo_a.jpg (4032 x 3024) and banner.jpg (1600 x 1200) - with the scale set to 50%.
->
Expected output
photo_a.jpg is saved at 2016 x 1512 and banner.jpg at 800 x 600.
A percentage scales both axes by the same factor, so each image keeps its 4:3 shape: 4032 x 0.5 = 2016 and 3024 x 0.5 = 1512; 1600 x 0.5 = 800 and 1200 x 0.5 = 600. Both results preserve the original aspect ratio.