19 lines
384 B
C#
19 lines
384 B
C#
namespace Umbraco.Web.Media.Exif
|
|
{
|
|
/// <summary>
|
|
/// Represents the IFD section containing tags.
|
|
/// </summary>
|
|
internal enum IFD : int
|
|
{
|
|
Unknown = 0,
|
|
Zeroth = 100000,
|
|
EXIF = 200000,
|
|
GPS = 300000,
|
|
Interop = 400000,
|
|
First = 500000,
|
|
MakerNote = 600000,
|
|
JFIF = 700000,
|
|
JFXX = 800000,
|
|
}
|
|
}
|