VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Codecs.ImageFiles.Tiff Namespace / TiffTagDataType Enumeration
Syntax Members Hierarchy Requirements SeeAlso
In This Topic
    TiffTagDataType Enumeration
    In This Topic
    Specifies available tag data types.
    Syntax
    'Declaration
    
    Public Enum TiffTagDataType
       Inherits System.Enum
    
    
    public enum TiffTagDataType : System.Enum
    
    
    __value public enum TiffTagDataType : public System.Enum
    
    
    public enum class TiffTagDataType : public System.Enum
    
    
    Members
    MemberDescription
    Byte8-bit unsigned integer.
    Ascii8-bit byte that contains a 7-bit ASCII code; the last byte must be NUL (binary zero).
    Short16-bit (2-byte) unsigned integer.
    Long32-bit (4-byte) unsigned integer.
    RationalTwo LONGs: the first represents the numerator of a fraction; the second, the denominator.
    SByteAn 8-bit signed (twos-complement) integer.
    UndefinedAn 8-bit byte that may contain anything, depending on the definition of the field.
    SShortA 16-bit (2-byte) signed (twos-complement) integer.
    SLongA 32-bit (4-byte) signed (twos-complement) integer.
    SRationalTwo SLONG's: the first represents the numerator of a fraction, the second the denominator.
    FloatSingle precision (4-byte) IEEE format.
    DoubleDouble precision (8-byte) IEEE format.
    IFDImage File Directory.
    Long864-bit (8-byte) unsigned integer.
    SLong8A 64-bit (8-byte) signed integer.
    IFD8Image File Directory (64-bit).
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Vintasoft.Imaging.Codecs.ImageFiles.Tiff.TiffTagDataType

    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also