PoliteTools
Images4 min read

Photo and Signature Size for Online Application Forms

Almost every online application form asks for two images: a passport-style photograph and a scanned signature. Almost every one imposes limits on both, and the limits are strict enough that a phone photo will fail by a factor of a hundred or more.

The rules are not complicated, but they are rarely explained, and the error messages when you get them wrong are famously unhelpful. Here is what is actually being checked.

The four things a portal checks

Uploads are usually validated against four separate rules, and failing any one produces the same generic error. Knowing all four saves you guessing which one you broke.

  • File size, in kilobytes — commonly 20 to 50 KB for a signature and 20 to 100 KB for a photograph.
  • Pixel dimensions — often a required width and height range rather than an exact figure.
  • File format — usually JPEG only, which is why PNG uploads sometimes fail with no explanation.
  • Aspect ratio — a photograph is typically expected to be taller than it is wide, roughly 3:4.

Why kilobytes and pixels pull in opposite directions

The two most common rules fight each other, which is what makes this genuinely awkward rather than merely tedious. A minimum pixel dimension says the image must contain at least a certain amount of detail. A maximum file size says it may not take up much room. Satisfying both means compressing hard while keeping the frame large.

This is why simply resizing an image smaller often fails: you drop below the required width, and the form rejects it for a reason it does not state. It is also why saving a smaller-looking image from a screenshot rarely works — screenshots are usually PNG, which is far larger than JPEG for photographic content.

The correct approach is to fix dimensions and format first, then compress to the size limit without changing dimensions further. That ordering satisfies both constraints; doing it the other way round tends to satisfy neither.

Getting a signature under 20KB and keeping it legible

A signature has the tightest limit and the least tolerance for damage, because thin pen strokes are exactly what compression destroys first. The single most effective step has nothing to do with software: crop tightly around the ink before you compress anything.

A signature photographed in the middle of a sheet of A4 is spending most of its allowance describing blank paper — and paper is not free to encode, because its texture and the lighting gradient across it are precisely the kind of low-contrast noise that compresses badly. Cropping to the ink alone routinely halves the file before any compression is applied.

One trap worth knowing: signatures exported from a drawing app are often PNGs with a transparent background. JPEG has no transparency, so a careless conversion turns every transparent pixel black — and since the ink is usually black too, the result is a solid black rectangle. A tool that paints a white background first avoids this; if you have ever received a black box instead of your signature, that is what happened.

The photograph is checked by a human later

It is worth remembering what the photograph is for. Unlike the signature, it will be compared against your face by a person at a verification desk, and it may be printed on an admit card at low resolution. That changes what you should protect.

Resolution matters more than absolute sharpness. Mild compression noise across a face barely affects recognition, because the features people match on — the proportions and spacing of eyes, nose and mouth — are large-scale structure that survives compression well. Heavy downscaling attacks exactly that structure, which is why keeping the frame large and lowering quality beats shrinking the image.

Crop to the required framing before compressing, never after. Compressing first spends your entire budget describing a background you are about to discard, leaving a small crop that was compressed far harder than it needed to be.

Read the notification, not a forum post

Specifications differ between boards and change between cycles. A checklist someone posted two years ago for a different exam is not a reliable guide, and following it is a common cause of rejection that feels inexplicable at the time.

Open the current official notification for the exam or application you are actually submitting, write down all four rules before you start, and do the file-size step last. It is the only one of the four you can always fix without re-taking the photograph.

Why the same file passes on one portal and fails on another

It is common to prepare a photograph that one application accepts happily and a second rejects without explanation, which feels arbitrary and generally is not. Portals differ in which of the four rules they enforce and how strictly, and several enforce a minimum size as well as a maximum on the theory that a very small file indicates a scan too poor to verify anyone against.

That minimum is the one that catches people who have over-compressed. Having fought a file down to well under the cap, they submit something the portal considers suspiciously small. Aiming just under the maximum rather than far beneath it satisfies both ends at once, which is why a tool that uses the whole budget is more useful here than one that simply makes files small.

The other frequent cause is uploading to the wrong slot. Forms typically have separate boxes for the photograph and the signature with different limits attached, and the limits are displayed next to the box rather than at the top of the page. Read the figure attached to the specific box before deciding what to aim for.

Tools mentioned in this guide

Keep reading