Skip to content

Commit 7f17608

Browse files
committed
Corrected comments and the values.
1 parent 2ebe20d commit 7f17608

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/Magick.NET.Core/Profiles/Exif/ExifIfds.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
namespace ImageMagick;
77

88
/// <summary>
9-
/// Specifies the different IFDs that can be found in an Exif profile.
9+
/// Specifies the IFD of an Exif tag.
1010
/// </summary>
1111
[Flags]
1212
public enum ExifIfds
@@ -17,22 +17,22 @@ public enum ExifIfds
1717
None = 0,
1818

1919
/// <summary>
20-
/// Primary IFD.
20+
/// The IFD0.
2121
/// </summary>
2222
Ifd0 = 1,
2323

2424
/// <summary>
25-
/// Thumbnail IFD.
25+
/// The Exif IFD.
2626
/// </summary>
27-
Exif = 4,
27+
Exif = 2,
2828

2929
/// <summary>
30-
/// GPS IFD.
30+
/// The GPS IFD.
3131
/// </summary>
32-
Gps = 8,
32+
Gps = 4,
3333

3434
/// <summary>
35-
/// All.
35+
/// All IFDs.
3636
/// </summary>
3737
All = Ifd0 | Exif | Gps,
3838
}

0 commit comments

Comments
 (0)