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

ApplicationTypical dimensionsTypical file size limit
US visa application (DS-160)600×600 to 1200×1200 px, squareUnder 240 KB, JPEG
UK passport, digital photoAt least 600×750 pxBetween 50 KB and 10 MB
Many online visa portals35×45 mm at 300 DPI ≈ 413×531 pxCommonly 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?
Crop and resize to the required pixel dimensions first, then compress with the dimensions held fixed until the file lands under the stated limit. Aim for roughly 80% of the maximum rather than exactly at it, so that any re-encoding on the portal's side does not push you over.
Will compressing my photo get my application rejected?
Not by itself — portals impose file size limits precisely because they expect compressed photos. Rejections come from the photo failing the visible requirements: wrong dimensions, wrong background, poor lighting, or compression pushed so far that the face shows visible artifacts.
What dimensions does a passport photo need?
It depends entirely on the country and the application route, and printed specifications (such as 35×45 mm) have to be converted to pixels at the required DPI before they mean anything for an upload. Check the official specification for your specific application rather than relying on a general figure.
Should I resize or compress to meet the limit?
Both, in that order. Resize to reach the required pixel dimensions, then compress to reach the file size limit. Compressing without resizing often cannot get you far enough; resizing below the required dimensions will fail validation outright.
Can I use a photo taken on my phone?
Usually yes, provided it meets the composition rules — plain background, even lighting, neutral expression, no shadows across the face. Phone photos are typically far larger than any portal limit, which is exactly what this tool is for.