Write a tile into the tile tiff

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 void WriteTile(
	int rowNumber,
	int colNumber,
	Image<TColor, TDepth> tile
)
Public Sub WriteTile ( _
	rowNumber As Integer, _
	colNumber As Integer, _
	tile As Image(Of TColor, TDepth) _
)
public:
void WriteTile(
	int rowNumber, 
	int colNumber, 
	Image<TColor, TDepth>^ tile
)

Parameters

rowNumber
Int32
The starting row for the tile
colNumber
Int32
The starting col for the tile
tile
Image<(Of <(<'TColor, TDepth>)>)>
The tile to be written

See Also