[This is preliminary documentation and is subject to change.]

Writes a Tile bitmap (44x44) into specified file and returns structure with indexing information.

Namespace:  MulLib
Assembly:  MulLib (in MulLib.dll) Version: 1.0.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public static IndexData WriteTile(
	Stream stream,
	Bitmap bitmap
)
Public Shared Function WriteTile ( _
	stream As Stream, _
	bitmap As Bitmap _
) As IndexData
public:
static IndexData WriteTile(
	Stream^ stream, 
	Bitmap^ bitmap
)

Parameters

stream
Stream
Stream where to write to.
bitmap
Bitmap
Bitmap to write. If null, returns invalid IndexData.

Return Value

IndexData structure with indexing information.

Remarks

It writes only diamond from source image, other is ignored.

See Also