You are here: Start » FIL.NET » Function Reference » Image » Image Tiling » FIL.CreateImageTiles
Generates an array of regions and an array of boxes covering the area of an image.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void CreateImageTiles ( FilNet.Size inImageSize, int inTileWidth, int? inTileHeight, int? inHorizontalStep, int? inVerticalStep, FilNet.OverflowControl inOverflowControl, IList<FilNet.Region> outTileRegions, 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. |
![]() | 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 | FilNet.OverflowControl | KeepLast | Define what to do when overflowing tiles are present. Default value: KeepLast. | |
![]() | outTileRegions | System.Collections.Generic.IList<FilNet.Region> | Array containing produced tiles. | ||
![]() | 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. |