exiftool-ts - TypeScript ExifTool wrapper with C2PA support
Main entry point for the exiftool-ts library. Provides high-level API for reading and writing image metadata.
import { ExifTool } from 'exiftool-ts';const exiftool = new ExifTool();const result = await exiftool.read('photo.jpg');console.log(result.tags.Make); // "Canon" Copy
import { ExifTool } from 'exiftool-ts';const exiftool = new ExifTool();const result = await exiftool.read('photo.jpg');console.log(result.tags.Make); // "Canon"
exiftool-ts - TypeScript ExifTool wrapper with C2PA support
Main entry point for the exiftool-ts library. Provides high-level API for reading and writing image metadata.
Example