ImageMetadata Class

FreeImage.NET

ImageMetadata Class
Class handling metadata of a FreeImage bitmap.
Inheritance Hierarchy
SystemObject  FreeImageAPI.MetadataImageMetadata

Namespace: FreeImageAPI.Metadata
Assembly: FreeImageNET (in FreeImageNET.dll) Version: 3.17.0.4 (3.17.0)
Syntax
C#
public class ImageMetadata : IEnumerable, 
	IComparable, IComparable<ImageMetadata>

The ImageMetadata type exposes the following members.

Constructors
  NameDescription
Public methodImageMetadata(FIBITMAP)
Initializes a new instance based on the specified FIBITMAP, showing all known models.
Public methodImageMetadata(FIBITMAP, Boolean)
Initializes a new instance based on the specified FIBITMAP, showing or hiding empry models.
Top
Properties
  NameDescription
Public propertyCount
Returns the number of visible MetadataModels.
Public propertyHideEmptyModels
Gets or sets whether empty MetadataModels are hidden.
Public propertyItemInt32
Gets or sets the MetadataModel at the specified index.

In case the getter returns null the model is not contained by the list.

null can be used calling the setter to destroy the model.

Public propertyItemFREE_IMAGE_MDMODEL
Gets or sets the MetadataModel of the specified type.

In case the getter returns null the model is not contained by the list.

null can be used calling the setter to destroy the model.

Public propertyList
Returns a list of all visible MetadataModels.
Top
Methods
  NameDescription
Public methodAddTag
Adds new tag to the bitmap or updates its value in case it already exists. Key will be used as key.
Public methodCompareTo(Object)
Compares this instance with a specified Object.
Public methodCompareTo(ImageMetadata)
Compares this instance with a specified ImageMetadata object.
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 methodGetEnumerator
Retrieves an object that can iterate through the individual MetadataModels in this ImageMetadata.
Public methodGetHashCode
Serves as a hash function for a particular type.
(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 string that represents the current object.
(Inherited from Object.)
Top
See Also