Skip to content

Commit

Permalink
Make descriptions match Exif spec
Browse files Browse the repository at this point in the history
  • Loading branch information
drewnoakes committed Jul 23, 2019
1 parent cb853f6 commit d361bbc
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions MetadataExtractor/Formats/Exif/ExifDescriptorBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1005,25 +1005,25 @@ internal static string GetWhiteBalanceDescription(int value)
case 0: return "Unknown";
case 1: return "Daylight";
case 2: return "Florescent";
case 3: return "Tungsten";
case 3: return "Tungsten (Incandescent)";
case 4: return "Flash";
case 9: return "Fine Weather";
case 10: return "Cloudy";
case 11: return "Shade";
case 12: return "Daylight Fluorescent";
case 13: return "Day White Fluorescent";
case 14: return "Cool White Fluorescent";
case 15: return "White Fluorescent";
case 16: return "Warm White Fluorescent";
case 17: return "Standard light";
case 18: return "Standard light (B)";
case 19: return "Standard light (C)";
case 12: return "Daylight Fluorescent"; // (D 5700 - 7100K)
case 13: return "Day White Fluorescent"; // (N 4600 - 5500K)
case 14: return "Cool White Fluorescent"; // (W 3800 - 4500K)
case 15: return "White Fluorescent"; // (WW 3250 - 3800K)
case 16: return "Warm White Fluorescent"; // (L 2600 - 3250K)
case 17: return "Standard light A";
case 18: return "Standard light B";
case 19: return "Standard light C";
case 20: return "D55";
case 21: return "D65";
case 22: return "D75";
case 23: return "D50";
case 24: return "Studio Tungsten";
case 255: return "(Other)";
case 24: return "ISO Studio Tungsten";
case 255: return "Other";
default:
return "Unknown (" + value + ")";
}
Expand Down

0 comments on commit d361bbc

Please sign in to comment.