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

AVL.CreateImageTiles_AsBoxes

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

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void CreateImageTiles_AsBoxes
(
	AvlNet.ImageFormat inImageFormat,
	int inTileWidth,
	int? inTileHeight,
	int? inHorizontalStep,
	int? inVerticalStep,
	bool inOverflowControl,
	IList<AvlNet.Box> 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.
inTileHeightint?<1, INF>Demanded tile height; equals inTileWidth when set to Auto. Default value: atl::NIL.
inHorizontalStepint?<1, INF>Defines horizontal space between consecutive tiles; defaults to tile width. Can be used to produce overlapping tiles. Default value: atl::NIL.
inVerticalStepint?<1, INF>Defines vertical space between consecutive tiles; defaults to tile height. Can be used to produce overlapping tiles. Default value: atl::NIL.
inOverflowControlboolFalseWhen set to true, overflowing tiles will be removed form outTiles array. Default value: False.
outTilesSystem.Collections.Generic.IList<AvlNet.Box>Array containing produced tiles.
outRowCountintNumber of generated tiles rows.
outColumnCountintNumber of generated tiles per row.

Description

Creates an array of boxes.

Examples

CreateImageTiles_asBoxes with inTileWidth = 50 and inOverflowControl = true.

Function Overrides

See also