Passport Photo Size Reducer
Reduce image file size for passport and ID photo requirements.
Passport and visa photo uploads almost always enforce two limits at the same time: the pixel dimensions the photo must have, and the maximum file size in kilobytes it may occupy. A photo can satisfy one and fail the other, which is why an upload that looks correct still gets rejected.
Two constraints, two different fixes
Dimensions and file size are controlled by different things. Dimensions are a matter of cropping and resizing. File size is a matter of compression at whatever dimensions you have settled on. If you compress a photo that is still the wrong shape you will fail the dimension check; if you crop correctly but do not compress, you will fail the size check.
- Get the crop and the pixel dimensions right first — that is what the reviewer actually looks at.
- Only then compress down to the kilobyte limit, keeping the dimensions fixed.
- If you cannot reach the limit without the photo looking degraded, the source photo is probably larger than it needs to be.
Hitting an exact kilobyte target
A limit like "must be under 240 KB" is a ceiling, not a goal. Aim comfortably below it rather than exactly at it — some upload forms re-encode what you send, and a file sitting at 239 KB can come out the other side over the line. Compress to roughly 80% of the stated maximum and you leave yourself room.
Do not crop after compressing
Every compression pass discards detail permanently. If you compress first and then discover the crop is wrong, fixing the crop means compressing an already-degraded image a second time, and faces are exactly where those artifacts are most visible. Keep the original camera file, and treat each attempt as a fresh export from it.
Examples of published photo requirements
| Application | Typical dimensions | Typical file size limit |
|---|---|---|
| US visa application (DS-160) | 600×600 to 1200×1200 px, square | Under 240 KB, JPEG |
| UK passport, digital photo | At least 600×750 px | Between 50 KB and 10 MB |
| Many online visa portals | 35×45 mm at 300 DPI ≈ 413×531 px | Commonly 20 KB to 500 KB |
Requirements change and vary by application route and country. Always confirm the current specification with the issuing authority before you submit — the figures below are illustrative, not authoritative.
Frequently asked questions
How do I reduce a photo to a specific KB size?
Will compressing my photo get my application rejected?
What dimensions does a passport photo need?
Should I resize or compress to meet the limit?
Can I use a photo taken on my phone?
What to do next
This tool is free. When you need more than file housekeeping, these pick up where it stops.