Click or drag to resize

ExifTag Class

Represents an Exif tag including tag-ID, IFD, value, and description.
Inheritance Hierarchy
SystemObject
  Atalasoft.Imaging.MetadataTiffTag
    Atalasoft.Imaging.MetadataExifTag

Namespace:  Atalasoft.Imaging.Metadata
Assembly:  Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public class ExifTag : TiffTag

The ExifTag type exposes the following members.

Constructors
  NameDescription
Public methodExifTag(Int32, ExifTagIfd, Object)
Initializes a new instance of ExifTag.
Public methodExifTag(ExifTagID, ExifTagIfd, Object)
Initializes a new instance of ExifTag.
Public methodExifTag(Int32, ExifTagIfd, Object, TiffTagDataType)
Initializes a new instance of ExifTag.
Public methodExifTag(ExifTagID, ExifTagIfd, Object, TiffTagDataType)
Initializes a new instance of the ExifTag class.
Top
Properties
  NameDescription
Public propertyData
Gets or sets the value of this EXIF tag.
(Overrides TiffTagData.)
Public propertyDescription Obsolete.
This property is deprecated.
Public propertyID
Gets the ID of this TIFF tag.
(Inherited from TiffTag.)
Public propertyIfd
Gets the IFD of this ExifTag.
Public propertyType
Gets the TIFF DataType for this TIFF Tag.
(Inherited from TiffTag.)
Top
Methods
  NameDescription
Public methodStatic memberConvertExifDate
convert an Exif Date to a recognizeable system date
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
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.)
Public methodToString
Returns a text description of the tag in the form of 'TagDescription: FormattedTagValue'
(Overrides TiffTagToString.)
Top
Remarks
See the ExifParser class to retreive ExifTags from images.
See Also