|
1 | 1 | /* |
2 | | - * JavaScript Load Image Exif Map 1.0 |
| 2 | + * JavaScript Load Image Exif Map 1.0.1 |
3 | 3 | * https://github.com/blueimp/JavaScript-Load-Image |
4 | 4 | * |
5 | 5 | * Copyright 2013, Sebastian Tschan |
|
75 | 75 | 0xA001: 'ColorSpace', // Color space information tag |
76 | 76 | 0xA002: 'PixelXDimension', // Valid width of meaningful image |
77 | 77 | 0xA003: 'PixelYDimension', // Valid height of meaningful image |
| 78 | + 0xA500: 'Gamma', |
78 | 79 | 0x9101: 'ComponentsConfiguration', // Information about channels |
79 | 80 | 0x9102: 'CompressedBitsPerPixel', // Compressed bits per pixel |
80 | 81 | 0x927C: 'MakerNote', // Any desired information written by the manufacturer |
81 | 82 | 0x9286: 'UserComment', // Comments by user |
82 | 83 | 0xA004: 'RelatedSoundFile', // Name of related sound file |
83 | 84 | 0x9003: 'DateTimeOriginal', // Date and time when the original image was generated |
84 | 85 | 0x9004: 'DateTimeDigitized', // Date and time when the image was stored digitally |
85 | | - 0x9290: 'SubsecTime', // Fractions of seconds for DateTime |
86 | | - 0x9291: 'SubsecTimeOriginal', // Fractions of seconds for DateTimeOriginal |
87 | | - 0x9292: 'SubsecTimeDigitized', // Fractions of seconds for DateTimeDigitized |
| 86 | + 0x9290: 'SubSecTime', // Fractions of seconds for DateTime |
| 87 | + 0x9291: 'SubSecTimeOriginal', // Fractions of seconds for DateTimeOriginal |
| 88 | + 0x9292: 'SubSecTimeDigitized', // Fractions of seconds for DateTimeDigitized |
88 | 89 | 0x829A: 'ExposureTime', // Exposure time (in seconds) |
89 | 90 | 0x829D: 'FNumber', |
90 | 91 | 0x8822: 'ExposureProgram', // Exposure program |
91 | 92 | 0x8824: 'SpectralSensitivity', // Spectral sensitivity |
92 | | - 0x8827: 'ISOSpeedRatings', // ISO speed rating |
| 93 | + 0x8827: 'PhotographicSensitivity', // EXIF 2.3, ISOSpeedRatings in EXIF 2.2 |
93 | 94 | 0x8828: 'OECF', // Optoelectric conversion factor |
| 95 | + 0x8830: 'SensitivityType', |
| 96 | + 0x8831: 'StandardOutputSensitivity', |
| 97 | + 0x8832: 'RecommendedExposureIndex', |
| 98 | + 0x8833: 'ISOSpeed', |
| 99 | + 0x8834: 'ISOSpeedLatitudeyyy', |
| 100 | + 0x8835: 'ISOSpeedLatitudezzz', |
94 | 101 | 0x9201: 'ShutterSpeedValue', // Shutter speed |
95 | 102 | 0x9202: 'ApertureValue', // Lens aperture |
96 | 103 | 0x9203: 'BrightnessValue', // Value of brightness |
|
116 | 123 | 0xA401: 'CustomRendered', // Special processing |
117 | 124 | 0xA402: 'ExposureMode', // Exposure mode |
118 | 125 | 0xA403: 'WhiteBalance', // 1 = auto white balance, 2 = manual |
119 | | - 0xA404: 'DigitalZoomRation', // Digital zoom ratio |
| 126 | + 0xA404: 'DigitalZoomRatio', // Digital zoom ratio |
120 | 127 | 0xA405: 'FocalLengthIn35mmFilm', |
121 | 128 | 0xA406: 'SceneCaptureType', // Type of scene |
122 | 129 | 0xA407: 'GainControl', // Degree of overall image gain adjustment |
|
126 | 133 | 0xA40B: 'DeviceSettingDescription', |
127 | 134 | 0xA40C: 'SubjectDistanceRange', // Distance to subject |
128 | 135 | 0xA420: 'ImageUniqueID', // Identifier assigned uniquely to each image |
| 136 | + 0xA430: 'CameraOwnerName', |
| 137 | + 0xA431: 'BodySerialNumber', |
| 138 | + 0xA432: 'LensSpecification', |
| 139 | + 0xA433: 'LensMake', |
| 140 | + 0xA434: 'LensModel', |
| 141 | + 0xA435: 'LensSerialNumber', |
129 | 142 | // ============== |
130 | 143 | // GPS Info tags: |
131 | 144 | // ============== |
|
159 | 172 | 0x001B: 'GPSProcessingMethod', |
160 | 173 | 0x001C: 'GPSAreaInformation', |
161 | 174 | 0x001D: 'GPSDateStamp', |
162 | | - 0x001E: 'GPSDifferential' |
| 175 | + 0x001E: 'GPSDifferential', |
| 176 | + 0x001F: 'GPSHPositioningError' |
163 | 177 | }; |
164 | 178 |
|
165 | 179 | loadImage.ExifMap.prototype.stringValues = { |
|
0 commit comments