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.Size inImageSize, int inTileWidth, FilNet.OverflowControl inOverflowControl, IList<FilNet.Box> outTileBoxes, out int outRowCount, out int outColumnCount )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImageSize | FilNet.Size | Format of image for which tiles will be produced. | ||
![]() | inTileWidth | int | <1, INF> | 32 | Demanded tile width. Default value: 32. |
![]() | inOverflowControl | FilNet.OverflowControl | KeepLast | Define what to do when overflowing tiles are present. Default value: KeepLast. | |
![]() | outTileBoxes | 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.