inei
v1.1.1
Published
A simple and efficient EXIF metadata parser for JPEG images in TypeScript.
Maintainers
Readme
Enei
Goal of This Project
Reads and parses EXIF (Exchangeable Image File Format) data from image files. Works in both client and server environments.
Caveats
At this time, this package only supports reading EXIF data from JPEG files. It also only natively supports ESM. There are no plans to support CommonJS.
Installation
pnpm add ineiUsage
Using this package is simple. You can use it in both Node.js and browser environments.
import { parseExif } from 'inei';
// First you'll need to load the image file as an ArrayBuffer.
// Assuming you have an image as a FileList:
const image = files[0];
const arrayBuffer = await image.arrayBuffer();
// Now you can parse the EXIF data from the ArrayBuffer.
const exifData = parseExif(arrayBuffer);
// It will return an object with two possible shapes:
{
ok: true;
data: ParsedExif;
} | {
ok: false;
error: ExifError;
}
// If the parsing was successful, you can access the EXIF data like this:
if (exifData.ok) {
console.log(exifData.data);
} else {
console.error('Error parsing EXIF data:', exifData.error);
}
// And it will contain the parsed EXIF data in a structured format.
{
Make: 'Canon',
Model: 'Canon EOS R6',
DateTimeOriginal: '2023:10:01 12:34:56',
ExposureTime: '1/125',
FNumber: '8.0',
ISO: 100,
// ... other EXIF tags
}Extracted EXIF Data
For a full list of what this package extracts by default, you
can view tags.ts in the source code.
Formatting
This package ships with a few formatting functions to help you format the EXIF data but you are always free to format it however you like.
import { formatShutter } from "inei/format";
const shutter = formatShutter(0.008); // "1/125"