You are here: Start » FIL.NET » Function Reference » Image » Image Drawing » FIL.DrawGridImage
Draws an image as a tile on an image considered to be a grid of tiles.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
public static void DrawGridImage ( FilNet.Image ioImage, FilNet.Image inTileImage, int inColumnIndex, int inRowIndex )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
ioImage | FilNet.Image | ||||
![]() | inTileImage | FilNet.Image | Image to be pasted to the grid. | ||
![]() | inColumnIndex | int | Column index in the grid. | ||
![]() | inRowIndex | int | Row index in the grid. |
Description
The operation supports drawing image grids composed of equally sized images. The filters draws single inImage on the inImage at the location being the selected multiple of inTileImage dimensions.
Parameters pair inColumnIndex and inRowIndex set to (0, 0) draws inTileImage at the location of (0,0) pixels of the inImage.
Examples
![]() |
![]() |
![]() |
![]() |
Four consecutive instances of the DrawGridImage used to plot an image grid. Each of the filters receives different inImage and different pair of the inColumnIndex, inRowIndex parameters - accordingly: (0,0) (0,1) (1,0) (1,1).