Skip to content

Commit

Permalink
Replaced single-quote with double-quote
Browse files Browse the repository at this point in the history
  • Loading branch information
gomfunkel committed May 24, 2013
1 parent 5f471be commit 54506a3
Showing 1 changed file with 43 additions and 43 deletions.
86 changes: 43 additions & 43 deletions lib/exif/makernotes/fujifilm.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,49 +12,49 @@ exports.extractMakernotes = function (data, makernoteOffset, tiffOffset) {
// http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/FujiFilm.html
var tags = {

0x0000 : 'Version',
0x1000 : 'InternalSerialNumber',
0x1000 : 'Quality',
0x1001 : 'Sharpness',
0x1002 : 'WhiteBalance',
0x1003 : 'Saturation',
0x1004 : 'Contrast',
0x1005 : 'ColorTemperature',
0x1006 : 'Contrast',
0x100a : 'WhiteBalanceFineTune',
0x100b : 'NoiseReduction',
0x100e : 'HighISONoiseReduction',
0x1010 : 'FujiFlashMode',
0x1011 : 'FlashExposureComp',
0x1020 : 'Macro',
0x1021 : 'FocusMode',
0x1023 : 'FocusPixel',
0x1030 : 'SlowSync',
0x1033 : 'EXRAuto',
0x1034 : 'EXRMode',
0x1100 : 'AutoBracketing',
0x1101 : 'SequenceNumber',
0x1210 : 'ColorMode',
0x1300 : 'BlurWarning',
0x1301 : 'FocusWarning',
0x1302 : 'ExposureWarning',
0x1304 : 'GEImageSize',
0x1400 : 'DynamicRange',
0x1401 : 'FilmMode',
0x1402 : 'DynamicRangeSetting',
0x1403 : 'DevelopmentDynamicRange',
0x1404 : 'MinFocalLength',
0x1405 : 'MaxFocalLength',
0x1406 : 'MaxApertureAtMinFocal',
0x1407 : 'MaxApertureAtMaxFocal',
0x140b : 'AutoDynamicRange',
0x4100 : 'FacesDetected',
0x4103 : 'FacePositions',
0x4282 : 'FaceRecInfo',
0x8000 : 'FileSource',
0x8002 : 'OrderNumber',
0x8003 : 'FrameNumber',
0xb211 : 'Parallax'
0x0000 : "Version",
0x1000 : "InternalSerialNumber",
0x1000 : "Quality",
0x1001 : "Sharpness",
0x1002 : "WhiteBalance",
0x1003 : "Saturation",
0x1004 : "Contrast",
0x1005 : "ColorTemperature",
0x1006 : "Contrast",
0x100a : "WhiteBalanceFineTune",
0x100b : "NoiseReduction",
0x100e : "HighISONoiseReduction",
0x1010 : "FujiFlashMode",
0x1011 : "FlashExposureComp",
0x1020 : "Macro",
0x1021 : "FocusMode",
0x1023 : "FocusPixel",
0x1030 : "SlowSync",
0x1033 : "EXRAuto",
0x1034 : "EXRMode",
0x1100 : "AutoBracketing",
0x1101 : "SequenceNumber",
0x1210 : "ColorMode",
0x1300 : "BlurWarning",
0x1301 : "FocusWarning",
0x1302 : "ExposureWarning",
0x1304 : "GEImageSize",
0x1400 : "DynamicRange",
0x1401 : "FilmMode",
0x1402 : "DynamicRangeSetting",
0x1403 : "DevelopmentDynamicRange",
0x1404 : "MinFocalLength",
0x1405 : "MaxFocalLength",
0x1406 : "MaxApertureAtMinFocal",
0x1407 : "MaxApertureAtMaxFocal",
0x140b : "AutoDynamicRange",
0x4100 : "FacesDetected",
0x4103 : "FacePositions",
0x4282 : "FaceRecInfo",
0x8000 : "FileSource",
0x8002 : "OrderNumber",
0x8003 : "FrameNumber",
0xb211 : "Parallax"

};

Expand Down

0 comments on commit 54506a3

Please sign in to comment.