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