Size
--
Free · Instant · No signup
Basic file metadata from the File object. Not a full EXIF tag reader.
Page updated 2026-09-04.
Size
--
Without a photo file selected, this tool shows 'Choose a photo file to inspect' -- once a file is chosen, it reports basic file-system metadata: file name, size, MIME type, and last-modified date, all information the browser can read directly from the file object itself.
This is fundamentally different from camera EXIF data (which includes details like GPS coordinates, camera make and model, lens information, ISO, aperture, and shutter speed) -- EXIF is metadata embedded within the actual image file's binary data by the camera or phone that took the photo, requiring a dedicated binary parser to extract, not something a browser's basic file API exposes.
File name, size, MIME type, and modified date are all things the browser's File API can read instantly without opening or parsing the image content at all -- which is why this tool can report them reliably and immediately, unlike EXIF data buried inside the file's actual encoded bytes.
Honest file metadata only. Camera EXIF (GPS, lens, ISO) is not decoded on this page. Many photos carry sensitive embedded EXIF data, most notably GPS coordinates showing exactly where a photo was taken -- a real EXIF-decoding tool needs to handle that sensitive data responsibly, and this page deliberately scopes itself to only the non-sensitive file-system metadata instead, rather than half-implementing GPS extraction.
A file's 'last modified' date reflects when the file itself was last saved or touched on whatever device or filesystem it currently resides on -- this isn't necessarily the same as when the photo was actually taken, since copying, editing, or re-saving a file can update its modified timestamp independent of the original capture time.
For actual EXIF decoding (GPS, camera model, lens, exposure settings), a dedicated EXIF-parsing library or tool that reads the image's embedded binary metadata block is needed -- this tool intentionally doesn't attempt that more complex parsing.
If camera sensor and lens crop-factor math is what you actually need (a related but distinct photography calculation from reading a specific photo's EXIF data), the Camera Sensor Crop Factor Calculator covers that separately.
Honest file metadata only. Camera EXIF (GPS, lens, ISO) is not decoded on this page. That information lives in the image's embedded EXIF metadata, which requires a dedicated binary parser to extract. This tool intentionally reads only basic file-system metadata (name, size, type, modified date) that the browser's File API exposes directly, without decoding EXIF.
File name, file size, MIME type, and last-modified date -- all metadata the browser can read instantly from the file object itself, without needing to open or parse the actual image content.
Not necessarily. It reflects when the file was last saved or touched on its current device or filesystem, which can differ from the original capture time if the file was later copied, edited, or re-saved.
Honest file metadata only. Camera EXIF (GPS, lens, ISO) is not decoded on this page. GPS coordinates in particular are sensitive data that reveal exactly where a photo was taken. This page deliberately scopes itself to non-sensitive file metadata rather than partially implementing more complex, sensitive EXIF extraction.
A dedicated EXIF-parsing library or tool built specifically to read the binary metadata block embedded within an image file -- this tool intentionally doesn't attempt that more complex parsing task.
HEX to RGB / RGBA Code Converter Turn a hex color plus alpha into rgb() and rgba() CSS, focused on copy-ready declarations.
CSS Border Radius / Blob Shape Builder Eight percentages (horizontal and vertical per corner) compiled into one border-radius blob.
Image File Size Estimator (JPEG vs PNG vs WebP) Rough byte estimates for raw, JPEG, WebP, and PNG from dimensions, bit depth, and JPEG quality.
CSS Watermark Overlay Snippet A CSS overlay snippet for watermark text with opacity and size. Not a logo file compositor.