Guide · File sizes
Getting a photo into an exact KB range
"Photo must be between 20 KB and 50 KB." It is the single most common instruction on Indian application portals, and the least understood. Here is what that number actually measures — and why the usual tricks miss it.
KB is storage, not size on screen
A kilobyte range says nothing about how wide or tall the photo is. It measures how much storage the compressed file occupies. Two photos with identical dimensions can differ in file size by a factor of ten, because JPEG compression spends bytes on detail: sharp edges, texture, noise. A busy background costs kilobytes; a plain wall is nearly free.
This is why the same "resize to 60%" trick that worked for a friend's photo fails for yours. Their photo had less detail to encode. Percentages control the input; portals measure the output.
The three levers
Only three things decide a JPEG's final size: pixel dimensions, compression quality, and metadata. Metadata is the silent one — phone photos carry EXIF blocks (location, camera model, a preview thumbnail) that can add tens of kilobytes. Stripping it is free: it changes nothing visible. Dimensions matter quadratically: halving width and height quarters the pixels to encode. Quality is the fine control, trading subtle artefacts for bytes.
How to land inside a range
The reliable method is a search, not a guess: fix the required dimensions first, then walk the quality setting until the measured output fits under the maximum — and only touch dimensions if no quality can reach it. For a minimum size (yes, portals set those too, to reject thumbnail-quality uploads), the file can be padded with harmless comment data rather than degrading and re-degrading the image.
That is literally what FormReady's exact KB tool does: binary search over quality, measured against real bytes, with the result verified before you ever see a download button. When the portal specifies dimensions and a KB range together, the combined tool satisfies both at once, and the requirement checker will tell you exactly which rule an existing file breaks.
Practical notes
- Always work from the original photo, not a WhatsApp forward — messaging apps recompress and shrink images unpredictably.
- JPG reaches small sizes far better than PNG for photographs; use PNG only when a portal demands it.
- If a portal shows both a photo and a signature requirement, prepare them separately — signature limits like "10–20 KB" are stricter and assume a plain white background.
- After downloading, check the file's properties once. The size on disk is what the portal will measure.