File: IFD.cs

package info (click to toggle)
quickroute-gps 2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 19,576 kB
  • sloc: cs: 74,488; makefile: 72; sh: 43
file content (23 lines) | stat: -rw-r--r-- 484 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Text;

namespace ExifLibrary
{
    /// <summary>
    /// Represents the IFD section containing tags.
    /// </summary>
    public enum IFD : int
    {
        Unknown = 0,
        Zeroth = 100000,
        EXIF = 200000,
        GPS = 300000,
        Interop = 400000,
        First = 500000,
        MakerNote = 600000,
        JFIF = 700000,
        JFXX = 800000,
        PNG = 900000,
    }
}