Free Image Metadata Viewer Online
Upload any image and instantly see its dimensions, file size, type, aspect ratio, and color depth. No uploads.
How it works
Upload or drop an image
Click the upload area or drag and drop any image file.
View metadata
Dimensions, file size, aspect ratio, and type are shown instantly.
Inspect details
See megapixel count, display pixel density, and whether the image has transparency.
Browser-only
Canvas API and FileReader run locally — your image never leaves your tab.
Common use cases
Pre-upload validation
Check an image's dimensions and file size before uploading it to a CMS or CDN that has size requirements.
Asset audit
Quickly scan images to find oversized assets before optimizing for web delivery.
Design spec checking
Verify that an image matches the required dimensions for a design mockup or print specification.
Retina readiness
Check if an image is at least 2× the display size needed for sharp rendering on high-DPI screens.
Frequently asked questions
Does this show EXIF data?
Not currently — EXIF metadata (camera settings, GPS location, timestamps) requires binary parsing of the JPEG/TIFF format. This tool shows the visual properties: dimensions, size, type.
What formats are supported?
Any format the browser can render: PNG, JPEG, GIF, WebP, SVG, BMP, ICO. SVG reports the viewBox dimensions.
How is aspect ratio calculated?
By finding the GCD of width and height and reducing to the simplest form (e.g., 1920×1080 → 16:9).
Is my image uploaded?
No. FileReader reads the file locally and Canvas decodes it in the browser. Nothing is transmitted.