You are here: Start » FIL.NET » Invoke.CreateImageTiles_AsBoxes
Generates an array of boxes covering the area of an image.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void CreateImageTiles_AsBoxes ( Fil.Size inImageSize, int inTileWidth, Optional<int> inTileHeight, Optional<int> inHorizontalStep, Optional<int> inVerticalStep, Fil.OverflowControl inOverflowControl, List<Fil.Box> outTileBoxes, out int outRowCount, out int outColumnCount )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImageSize | Fil.Size | Format of image for which tiles will be produced. | ||
![]() | inTileWidth | int | <1, INF> | 32 | Demanded tile width. Default value: 32. |
![]() | inTileHeight | Ftl.Optional<int> | <1, INF> | Demanded tile height; equals inTileWidth when set to Auto. Default value: ftl::NIL. | |
![]() | inHorizontalStep | Ftl.Optional<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 | Ftl.Optional<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 | Fil.OverflowControl | KeepLast | Define what to do when overflowing tiles are present. Default value: KeepLast. | |
![]() | outTileBoxes | System.Collections.Generic.List<Fil.Box> | Array containing produced tiles. | ||
![]() | outRowCount | int | Number of generated tiles rows. | ||
![]() | outColumnCount | int | Number of generated tiles per row. |