You are here: Start » AVL.NET » AVL.CreateImageTiles_AsRegions

AVL.CreateImageTiles_AsRegions

Generates array of Regions, which divide image in, potentially overlapping, tiles.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void CreateImageTiles_AsRegions
(
	AvlNet.ImageFormat inImageFormat,
	int inTileWidth,
	bool inOverflowControl,
	IList<AvlNet.Region> outTiles,
	out int outRowCount,
	out int outColumnCount
)

Parameters

Name Type Range Default Description
inImageFormatAvlNet.ImageFormatFormat of image for which tiles will be produced.
inTileWidthint<1, INF>1Demanded tile width. Default value: 1.
inOverflowControlboolFalseWhen set to true, overflowing tiles will be removed form outTiles array. Default value: False.
outTilesSystem.Collections.Generic.IList<AvlNet.Region>Array containing produced tiles.
outRowCountintNumber of generated tiles rows.
outColumnCountintNumber of generated tiles per row.

Examples

CreateImageTiles_asRegions without and with vertical overlap.

Function Overrides

See also