You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: MetadataExtractor/Formats/Exif/ExifDirectoryBase.cs
+10-9Lines changed: 10 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
// Copyright (c) Drew Noakes and contributors. All Rights Reserved. Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
2
2
3
+
usingSystem;
3
4
usingSystem.Collections.Generic;
4
5
usingSystem.Diagnostics.CodeAnalysis;
5
6
@@ -253,10 +254,17 @@ public abstract class ExifDirectoryBase : Directory
253
254
254
255
publicconstintTagInterlace=0x8829;
255
256
257
+
[Obsolete("Use TagTimeZoneOffset instead.")]
256
258
publicconstintTagTimeZoneOffsetTiffEp=0x882A;
257
259
260
+
[Obsolete("Use TagSelfTimerMode instead.")]
258
261
publicconstintTagSelfTimerModeTiffEp=0x882B;
259
262
263
+
/// <summary>Non-standard, but in use.</summary>
264
+
publicconstintTagTimeZoneOffset=0x882A;
265
+
266
+
publicconstintTagSelfTimerMode=0x882B;
267
+
260
268
/// <summary>Applies to ISO tag.</summary>
261
269
/// <remarks>
262
270
/// 0 = Unknown
@@ -274,11 +282,6 @@ public abstract class ExifDirectoryBase : Directory
0 commit comments