-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #40. read exif orientation information
- Loading branch information
1 parent
992b5a7
commit c2105a2
Showing
11 changed files
with
1,647 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
export declare class Exif { | ||
static debug: boolean; | ||
static IptcFieldMap: Object; | ||
static Tags: Object; | ||
static TiffTags: Object; | ||
static GPSTags: Object; | ||
static StringValues: Object; | ||
static addEvent(element: any, event: any, handler: any): void; | ||
static imageHasData(img: any): boolean; | ||
static base64ToArrayBuffer(base64: any, contentType?: any): ArrayBuffer; | ||
static objectURLToBlob(url: any, callback: any): void; | ||
static getImageData(img: any, callback: any): void; | ||
static findEXIFinJPEG(file: any): any; | ||
static findIPTCinJPEG(file: any): {}; | ||
static readIPTCData(file: any, startOffset: any, sectionLength: any): {}; | ||
static readTags(file: any, tiffStart: any, dirStart: any, strings: any, bigEnd: any): {}; | ||
static readTagValue(file: any, entryOffset: any, tiffStart: any, dirStart: any, bigEnd: any): any; | ||
static getStringFromDB(buffer: any, start: any, length: any): string; | ||
static readEXIFData(file: any, start: any): any; | ||
static getData(img: any, callback: Function): boolean; | ||
static getTag(img: any, tag: any): any; | ||
static getAllTags(img: any): {}; | ||
static pretty(img: any): string; | ||
readFromBinaryFile(file: any): any; | ||
} |
Oops, something went wrong.