You are here: Start » FIL.NET » Function Reference » Image » Image Tiling » FIL.CutImageIntoTiles

FIL.CutImageIntoTiles

Generates an array of small images by cutting the input image.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
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
inImageFilNet.ImageImage to be cut into tiles.
inTileWidthint<1, INF>1Demanded tile width. Default value: 1.
inTileHeightint?<1, INF>Demanded tile height; equals inTileWidth when set to Auto. Default value: ftl::NIL.
inHorizontalStepint?<1, INF>Defines horizontal space between consecutive tiles; defaults to tile width. Can be used to produce overlapping tiles. Default value: ftl::NIL.
inVerticalStepint?<1, INF>Defines vertical space between consecutive tiles; defaults to tile height. Can be used to produce overlapping tiles. Default value: ftl::NIL.
inOverflowControlFilNet.OverflowControlDefine what to do when overflowing tiles are present.
outImageTilesSystem.Collections.Generic.IList<FilNet.Image>Resulting image tiles.

Description

Generates an array of image tiles, which are cut from inImage.

Examples

CutImageIntoTiles performed on the sample image with inOverflowControl = false.

Hardware Acceleration

This operation supports automatic parallelization for multicore and multiprocessor systems.

Hardware acceleration settings may be manipulated with Settings class.

Function Overrides

See also