Lab

Image Metadata (EXIF) Extractor

Upload an image to read EXIF metadata: camera details, capture settings, GPS coordinates on a map, file hashes, and export to JSON.

← Back to sandbox overview Contact

Upload Image

Click to upload or drag and drop

Supports JPEG, PNG, and other image formats

About EXIF Metadata

EXIF (Exchangeable Image File Format) data is metadata embedded in image files. It can include:

  • Camera information: make, model, lens details
  • Capture details: date/time, exposure settings, ISO, aperture
  • Location data: GPS coordinates (if enabled)
  • Software: editing apps used
  • Orientation: image rotation information
EXIF.getData(imageElement, function() {
  const make = EXIF.getTag(this, "Make");
  const model = EXIF.getTag(this, "Model");
  const dateTime = EXIF.getTag(this, "DateTimeOriginal");
  const gps = EXIF.getTag(this, "GPSLatitude");
});