We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ebe20d commit 7f17608Copy full SHA for 7f17608
1 file changed
src/Magick.NET.Core/Profiles/Exif/ExifIfds.cs
@@ -6,7 +6,7 @@
6
namespace ImageMagick;
7
8
/// <summary>
9
-/// Specifies the different IFDs that can be found in an Exif profile.
+/// Specifies the IFD of an Exif tag.
10
/// </summary>
11
[Flags]
12
public enum ExifIfds
@@ -17,22 +17,22 @@ public enum ExifIfds
17
None = 0,
18
19
20
- /// Primary IFD.
+ /// The IFD0.
21
22
Ifd0 = 1,
23
24
25
- /// Thumbnail IFD.
+ /// The Exif IFD.
26
27
- Exif = 4,
+ Exif = 2,
28
29
30
- /// GPS IFD.
+ /// The GPS IFD.
31
32
- Gps = 8,
+ Gps = 4,
33
34
35
- /// All.
+ /// All IFDs.
36
37
All = Ifd0 | Exif | Gps,
38
}
0 commit comments