Click or drag to resize

TiffDirectory Class

Represents a single TIFF page.
Inheritance Hierarchy
SystemObject
  Atalasoft.Imaging.Codec.TiffTiffDirectory

Namespace:  Atalasoft.Imaging.Codec.Tiff
Assembly:  Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public class TiffDirectory : IDisposable

The TiffDirectory type exposes the following members.

Constructors
  NameDescription
Public methodTiffDirectory(AtalaImage)
Creates a new TiffDirectory from an AtalaImage
Public methodTiffDirectory(AtalaImage, TiffCompression)
Creates a new TiffDirectory using the specified compression.
Public methodTiffDirectory(AtalaImage, TiffEncoder)
Creates a new TiffDirectory with the specified Tiff Encoder.
Top
Properties
  NameDescription
Public propertyAllowVitalTagChanges
Sets or gets a flag determining if changes should be allowed in vital TIFF tags.
Public propertyExifTags
Gets or sets a collection of EXIF Tags that will be saved with the image.
Public propertyCode exampleTags
Gets the collection of TiffTag objects associated with the image.
Top
Methods
  NameDescription
Public methodDispose
Disposes the TiffDirectory.
Protected methodDispose(Boolean)
Disposes the TiffDirectory.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Finalizes an instance of the TiffDirectory class.
(Overrides ObjectFinalize.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodOnError
Fires the Error event
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Events
  NameDescription
Public eventCodecError
This event is raised an a non critical error exists when reading a TIFF File.
Top
Remarks
A TiffDirectory represents a single page in a TiffFile. It can be constructed by the TiffFile class internally, returning an object that contains all the TIFF tags with no binary image data, or it can be constructed by the developer and represent actual image data and tag information that will be saved into an existing TiffFile.
See Also