You are here: Start » FIL.NET » FIL.CreateImageTiles_AsRegions
Generates array of Regions, which divide image in, potentially overlapping, tiles.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void CreateImageTiles_AsRegions ( FilNet.ImageFormat inImageFormat, int inTileWidth, bool inOverflowControl, IList<FilNet.Region> 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. |
![]() | inOverflowControl | bool | False | When set to true, overflowing tiles will be removed form outTiles array. Default value: False. | |
![]() | outTiles | System.Collections.Generic.IList<FilNet.Region> | Array containing produced tiles. | ||
![]() | outRowCount | int | Number of generated tiles rows. | ||
![]() | outColumnCount | int | Number of generated tiles per row. |
Examples
![]() |
![]() |
CreateImageTiles_asRegions without and with vertical overlap.