C# Class BitMiracle.LibTiff.Classic.Internal.TiffDirEntry

TIFF Image File Directories are comprised of a table of field descriptors of the form shown below. The table is sorted in ascending order by tag. The values associated with each entry are disjoint and may appear anywhere in the file (so long as they are placed on a word boundary). If the value is 4 bytes or less, then it is placed in the offset field to save space. If the value is less than 4 bytes, it is left-justified in the offset field.
Show file Open project: Core-Techs/TiffLibrary Class Usage Examples

Public Properties

Property Type Description
tdir_count int
tdir_offset uint
tdir_tag TiffTag
tdir_type TiffType

Public Methods

Method Description
ToString ( ) : string

Method Details

ToString() public method

public ToString ( ) : string
return string

Property Details

tdir_count public property

number of items; length in spec
public int tdir_count
return int

tdir_offset public property

byte offset to field data
public uint tdir_offset
return uint

tdir_tag public property

public TiffTag tdir_tag
return TiffTag

tdir_type public property

public TiffType tdir_type
return TiffType