How to Reduce an Image to 100 KB for an Online Form
July 9, 2026
Plenty of official forms reject a photo the moment it is over a set file size. A 100 KB cap is one of the most common, and it trips people up because a normal phone photo is several megabytes, which is dozens of times too big.
The fix is not just "make it smaller." It is getting it under the limit while keeping it as sharp as the limit allows.
Two things control file size
An image file's size comes from two levers:
- Dimensions, the width and height in pixels. Fewer pixels means a smaller file.
- Compression, how hard the format squeezes the data. More compression means a smaller file but softer detail.
The trick is to use the levers in the right order. Drop the compression first, because that is the least noticeable change, and only shrink the dimensions if compression alone cannot get you there.
Let the tool do the search
That ordering is exactly what the resize to 100 KB page does. Drop your image in and it searches for the highest JPG quality that still lands under 100 KB. If your photo is so large that even low quality is over the limit, it steps the dimensions down until the file fits. You see the final size and the quality it chose before you download, so there is no guessing.
JPG or WebP
For a form, JPG is the safe choice because almost every portal accepts it. If the form allows WebP, it will hold more detail at the same 100 KB, but check the accepted formats first. If the form says JPG only, use JPG.
Common caps you might run into
| Target | Where you see it |
|---|---|
| 20 KB | Some government and exam portals |
| 50 KB | Strict form and older portal limits |
| 100 KB | Job applications, visa forms, exam registrations |
| 200 KB | Profile uploads and many forms |
If your form asks for a different number, there are pages for 20 KB, 50 KB, and 200 KB too. All of it happens in your browser, so your photo is never uploaded to us.