MDM_GEOTIFF.IntergraphTransformationMatrix Property

FreeImage.NET

MDM_GEOTIFFIntergraphTransformationMatrix Property
Gets or sets the value of the GeoTIFF IntergraphTransformationMatrixTag.

Namespace: FreeImageAPI.Metadata
Assembly: FreeImageNET (in FreeImageNET.dll) Version: 3.17.0.4 (3.17.0)
Syntax
C#
public double[] IntergraphTransformationMatrix { get; set; }

Property Value

Type: Double
Remarks
The IntergraphTransformationMatrixTag conflicts with an internal software implementation at Intergraph, and so its use is no longer encouraged. A GeoTIFF reader should look first for the new tag, and only if it is not found should it check for this older tag. If found, it should only consider it to be contain valid GeoTIFF matrix information if the tag-count is 16; the Intergraph version uses 17 values.


Handling of null values

A null value indicates, that the corresponding metadata tag is not present in the metadata model. Setting this property's value to a non-null reference creates the metadata tag if necessary. Setting this property's value to a null reference deletes the metadata tag from the metadata model.

See Also