exifreader
Advanced tools
Comparing version 4.19.0 to 4.19.1
@@ -100,5 +100,32 @@ /// <reference types="node" /> | ||
description: string | ||
} | ||
}, | ||
} | ||
interface GifTags { | ||
'GIF Version': { | ||
value: '87a' | '89a', | ||
description: '87a' | '89a' | ||
}, | ||
'Image Width'?: { | ||
value: number, | ||
description: string | ||
}, | ||
'Image Height'?: { | ||
value: number, | ||
description: string | ||
}, | ||
'Global Color Map'?: { | ||
value: 0 | 1, | ||
description: 'No' | 'Yes' | ||
}, | ||
'Bits Per Pixel'?: { | ||
value: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8, | ||
description: string | ||
}, | ||
'Color Resolution Depth'?: { | ||
value: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8, | ||
description: string | ||
}, | ||
} | ||
interface NumberFileTag { | ||
@@ -179,2 +206,3 @@ description: string, | ||
riff?: RiffTags, | ||
gif?: GifTags, | ||
Thumbnail?: ThumbnailTags, | ||
@@ -489,3 +517,3 @@ gps?: GpsTags | ||
export type Tags = XmpTags & IccTags & PngTags & RiffTags & PhotoshopTags & { | ||
export type Tags = XmpTags & IccTags & PngTags & RiffTags & GifTags & PhotoshopTags & { | ||
'Thumbnail'?: ThumbnailTags; | ||
@@ -492,0 +520,0 @@ 'Images'?: MPFImageTags[], |
{ | ||
"name": "exifreader", | ||
"version": "4.19.0", | ||
"version": "4.19.1", | ||
"description": "Library that parses Exif metadata in images.", | ||
@@ -5,0 +5,0 @@ "author": "Mattias Wallander <mattias@wallander.eu>", |
@@ -6,4 +6,4 @@ ExifReader | ||
metadata. It can also extract an embedded thumbnail. It can be used either in a | ||
browser or from Node. Supports JPEG, TIFF, PNG, HEIC, and WebP files with Exif, | ||
IPTC, XMP, ICC, and MPF metadata (depending on file type). | ||
browser or from Node. Supports JPEG, TIFF, PNG, HEIC, WebP, and GIF files with | ||
Exif, IPTC, XMP, ICC, and MPF metadata (depending on file type). | ||
@@ -10,0 +10,0 @@ ExifReader is highly and easily configurable and the resulting bundle can be as |
702632
7468