You are here: Start » FIL.NET » FIS.CutImageIntoTiles Method
FIS.CutImageIntoTiles Method
Generates an array of small images by cutting the input image.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
public static void CutImageIntoTiles ( FilNet.Image inImage, int inTileWidth, int? inTileHeight, int? inHorizontalStep, int? inVerticalStep, FilNet.OverflowControl inOverflowControl, IList<FilNet.Image> outImageTiles )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | FilNet.Image | Image to be cut into tiles. | ||
![]() | 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 | FilNet.OverflowControl | Define what to do when overflowing tiles are present. | ||
![]() | outImageTiles | System.Collections.Generic.IList<FilNet.Image> | Resulting image tiles. |