A writer for writing GeoTiff

Namespace: Emgu.CV.Tiff
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class TileTiffWriter<TColor, TDepth> : TiffWriter<TColor, TDepth>
where TColor : struct, new(), IColor
where TDepth : new()
Public Class TileTiffWriter(Of TColor As {Structure, New, IColor}, TDepth As New) _
	Inherits TiffWriter(Of TColor, TDepth)
generic<typename TColor, typename TDepth>
where TColor : value class, gcnew(), IColor
where TDepth : gcnew()
public ref class TileTiffWriter : public TiffWriter<TColor, TDepth>

Type Parameters

TColor
The color type of the image to be written
TDepth
The depth type of the image to be written

Members

               
 All Members  Constructors   Fields   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
TileTiffWriter<(Of <(<'TColor, TDepth>)>)>(String, Size, Size)
Create a TitleTiffWriter.
_ptr
A pointer to the unmanaged object
(Inherited from UnmanagedObject.)
Dispose()()()()
The dispose function that implements IDisposable interface
(Inherited from DisposableObject.)
DisposeObject()()()()
Release the writer and write all data on to disk.
(Inherited from TiffWriter<(Of <(<'TColor, TDepth>)>)>.)
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Finalize()()()()
Destructor
(Inherited from DisposableObject.)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
MemberwiseClone()()()()
Creates a shallow copy of the current Object.
(Inherited from Object.)
Ptr
Pointer to the unmanaged object
(Inherited from UnmanagedObject.)
ReleaseManagedResources()()()()
Release the managed resources. This function will be called during the disposal of the current object. override ride this function if you need to call the Dispose() function on any managed IDisposable object created by the current object
(Inherited from DisposableObject.)
TileRowSizeInBytes
Get the number of bytes of a row of data in a tile.
TileSize
Get tile size in pixels.
TileSizeInBytes
Get the equivalent size for a tile of data as it would be returned in a call to TIFFReadTile or as it would be expected in a call to TIFFWriteTile.
ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)
WriteGeoTag(array<Double>[]()[][], array<Double>[]()[][])
Write the geo information into the tiff file
(Inherited from TiffWriter<(Of <(<'TColor, TDepth>)>)>.)
WriteGeoTag(GeodeticCoordinate, Size, MCvPoint2D64f)
Write the geo information into the tiff file
(Inherited from TiffWriter<(Of <(<'TColor, TDepth>)>)>.)
WriteImage(Image<(Of <<'(TColor, TDepth>)>>))
Write the whole image as tile tiff
(Overrides TiffWriter<(Of <(<'TColor, TDepth>)>)>..::..WriteImage(Image<(Of <<'(TColor, TDepth>)>>)).)
WriteTile(Int32, Int32, Image<(Of <<'(TColor, TDepth>)>>))
Write a tile into the tile tiff

Inheritance Hierarchy

System..::..Object
  Emgu.Util..::..DisposableObject
    Emgu.Util..::..UnmanagedObject
      Emgu.CV.Tiff..::..TiffWriter<(Of <(<'TColor, TDepth>)>)>
        Emgu.CV.Tiff..::..TileTiffWriter<(Of <(<'TColor, TDepth>)>)>

See Also