Visor EXIF
Extract and display EXIF metadata from photos including GPS location, camera settings, and date.
Click or drag a photo here to upload
1 image · Max 10MBEXIF Viewer
EXIF (Exchangeable Image File Format) is metadata embedded in photos by cameras and smartphones. It includes information like GPS coordinates, camera model, aperture, shutter speed, ISO, and the date the photo was taken.
This tool reads and displays all EXIF tags from your photo. If GPS data is present, a map showing the location is displayed.
How to use
- Drag and drop a photo onto the upload area, or click to select.
- All EXIF metadata tags are displayed in a table.
- If GPS coordinates are found, a map showing the photo location is displayed.
What is EXIF data?
EXIF data is embedded in JPEG and TIFF images by digital cameras and smartphones. It records camera settings (aperture, shutter speed, ISO, focal length), date/time, and optionally GPS coordinates.
Social media platforms often strip EXIF data when uploading, but original files from your camera still contain this information.
Read EXIF with Python
Extract EXIF data using Python with the exifread library:
import exifread
with open('photo.jpg', 'rb') as f:
tags = exifread.process_file(f)
for key, value in tags.items():
print(f'{key}: {value}')