File tree Expand file tree Collapse file tree 4 files changed +13
-0
lines changed
src/ImageSharp/Metadata/Profiles/Exif
tests/ImageSharp.Tests/Metadata/Profiles/Exif/Values Expand file tree Collapse file tree 4 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -165,4 +165,9 @@ public abstract partial class ExifTag
165
165
/// Gets the GPSDestDistance exif tag.
166
166
/// </summary>
167
167
public static ExifTag < Rational > GPSDestDistance { get ; } = new ExifTag < Rational > ( ExifTagValue . GPSDestDistance ) ;
168
+
169
+ /// <summary>
170
+ /// Gets the GPSHPositioningError exif tag.
171
+ /// </summary>
172
+ public static ExifTag < Rational > GPSHPositioningError { get ; } = new ExifTag < Rational > ( ExifTagValue . GPSHPositioningError ) ;
168
173
}
Original file line number Diff line number Diff line change @@ -1691,6 +1691,11 @@ internal enum ExifTagValue
1691
1691
/// </summary>
1692
1692
GPSDifferential = 0x001E ,
1693
1693
1694
+ /// <summary>
1695
+ /// GPSHPositioningError
1696
+ /// </summary>
1697
+ GPSHPositioningError = 0x001F ,
1698
+
1694
1699
/// <summary>
1695
1700
/// Used in the Oce scanning process.
1696
1701
/// Identifies the scanticket used in the scanning process.
Original file line number Diff line number Diff line change @@ -241,6 +241,8 @@ internal static partial class ExifValues
241
241
return new ExifRational ( ExifTag . GPSDestBearing ) ;
242
242
case ExifTagValue . GPSDestDistance :
243
243
return new ExifRational ( ExifTag . GPSDestDistance ) ;
244
+ case ExifTagValue . GPSHPositioningError :
245
+ return new ExifRational ( ExifTag . GPSHPositioningError ) ;
244
246
245
247
case ExifTagValue . WhitePoint :
246
248
return new ExifRationalArray ( ExifTag . WhitePoint ) ;
Original file line number Diff line number Diff line change @@ -128,6 +128,7 @@ public class ExifValuesTests
128
128
{ ExifTag . GPSImgDirection } ,
129
129
{ ExifTag . GPSDestBearing } ,
130
130
{ ExifTag . GPSDestDistance } ,
131
+ { ExifTag . GPSHPositioningError } ,
131
132
} ;
132
133
133
134
public static TheoryData < ExifTag > RationalArrayTags => new TheoryData < ExifTag >
You can’t perform that action at this time.
0 commit comments