You are here: Start » FIL.NET » FIL.CreateImageTiles_AsBoxes
Generates array of Boxes, which divide image in, potentially overlapping, tiles.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void CreateImageTiles_AsBoxes ( FilNet.ImageFormat inImageFormat, int inTileWidth, int? inTileHeight, int? inHorizontalStep, int? inVerticalStep, bool inOverflowControl, IList<FilNet.Box> outTiles, out int outRowCount, out int outColumnCount )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImageFormat | FilNet.ImageFormat | Format of image for which tiles will be produced. | ||
![]() | inTileWidth | int | <1, INF> | 1 | Demanded tile width. Default value: 1. |
![]() | inTileHeight | int? | <1, INF> | Demanded tile height; equals inTileWidth when set to Auto. Default value: ftl::NIL. | |
![]() | inHorizontalStep | int? | <1, INF> | Defines horizontal space between consecutive tiles; defaults to tile width. Can be used to produce overlapping tiles. Default value: ftl::NIL. | |
![]() | inVerticalStep | int? | <1, INF> | Defines vertical space between consecutive tiles; defaults to tile height. Can be used to produce overlapping tiles. Default value: ftl::NIL. | |
![]() | inOverflowControl | bool | False | When set to true, overflowing tiles will be removed form outTiles array. Default value: False. | |
![]() | outTiles | System.Collections.Generic.IList<FilNet.Box> | Array containing produced tiles. | ||
![]() | outRowCount | int | Number of generated tiles rows. | ||
![]() | outColumnCount | int | Number of generated tiles per row. |
Description
Creates an array of boxes.
Examples
![]() |
![]() |
CreateImageTiles_asBoxes with inTileWidth = 50 and inOverflowControl = true.