You are here: Start » FIL.NET » FIS.CreateImageTiles_AsBoxes Method

FIS.CreateImageTiles_AsBoxes Method

Generates an array of boxes covering the area of an image.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void CreateImageTiles_AsBoxes
(
	FilNet.Size inImageSize,
	int inTileWidth,
	int? inTileHeight,
	int? inHorizontalStep,
	int? inVerticalStep,
	FilNet.OverflowControl inOverflowControl,
	IList<FilNet.Box> outTileBoxes,
	out int outRowCount,
	out int outColumnCount
)

Parameters

Name Type Range Default Description
inImageSizeFilNet.SizeFormat of image for which tiles will be produced.
inTileWidthint<1, INF>32Demanded tile width. Default value: 32.
inTileHeightint?<1, INF>Demanded tile height; equals inTileWidth when set to Auto. Default value: ftl::NIL.
inHorizontalStepint?<1, INF>Defines horizontal space between consecutive tiles; defaults to tile width. Can be used to produce overlapping tiles. Default value: ftl::NIL.
inVerticalStepint?<1, INF>Defines vertical space between consecutive tiles; defaults to tile height. Can be used to produce overlapping tiles. Default value: ftl::NIL.
inOverflowControlFilNet.OverflowControlKeepLastDefine what to do when overflowing tiles are present. Default value: KeepLast.
outTileBoxesSystem.Collections.Generic.IList<FilNet.Box>Array containing produced tiles.
outRowCountintNumber of generated tiles rows.
outColumnCountintNumber of generated tiles per row.

Function Overrides

See also