{# canonical_base is the OWNING tenant's origin: all 16 Peasy domains serve the same catalogue, so a page rendered by a non-owner points its canonical at the owner instead of competing with it. Falls back to this site for static/self-owned pages. #}
🍋
Menu
Image

EXIF

EXIF (Exchangeable Image File Format)

EXIF is a metadata standard embedded in JPEG, TIFF, and RAW files that records camera settings and shooting conditions. It stores data like shutter speed, aperture, ISO, GPS location, date, camera model, and lens information.

तकनीकी विवरण

EXIF data is stored as tagged key-value pairs in the APP1 marker segment of JPEG files. The specification defines over 100 standard tags across IFD0 (image), Exif IFD (camera), and GPS IFD (location) directories.

उदाहरण

```javascript
// Read EXIF data from image file
const buffer = await file.arrayBuffer();
const view = new DataView(buffer);

// Check JPEG SOI marker
if (view.getUint16(0) === 0xFFD8) {
  // EXIF starts at APP1 marker (0xFFE1)
  // Fields: camera model, aperture, ISO, GPS coords
}

// Strip EXIF: re-draw on canvas → export (removes metadata)
```

संबंधित फ़ॉर्मेट

संबंधित टूल्स

संबंधित शब्द