@dkluge/image-editor
Version:
A powerful React image editor component with crop, filter, annotate, and sticker features
15 lines • 439 B
TypeScript
export interface ExifData {
orientation?: number;
make?: string;
model?: string;
dateTime?: string;
[key: string]: any;
}
export declare class ExifProcessor {
static readExif(file: File): Promise<ExifData>;
private static parseExifSegment;
private static parseIFD;
private static readString;
static getOrientationTransform(orientation?: number): string;
}
//# sourceMappingURL=ExifProcessor.d.ts.map