You are here: Start » FIL.NET » Function Reference » Image » Image Tiling » FIL.JoinImageTiles
Joins previously cut tiles into single image.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void JoinImageTiles ( IList<FilNet.Image> inImages, int inRowCount, int inColumnCount, FilNet.Image outJoinedImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImages | System.Collections.Generic.IList<FilNet.Image> | Array of image tiles. | ||
![]() | inRowCount | int | <1, INF> | Defines how many output image rows there are in inImages. | |
![]() | inColumnCount | int | <1, INF> | Defines how many images builds one row in inImages. | |
![]() | outJoinedImage | FilNet.Image | Glued image. |
Description
Joins an array of images into one image.
Examples
![]() |
![]() |
![]() |
![]() |
![]() |
JoinImageTiles glues together an array of images with inRowCount = 2 and inColumnCount = 2.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Input images do not have compatible height in JoinImageTiles. |
DomainError | Input images do not have compatible width in JoinImageTiles. |
DomainError | Input images do not have the same pixel format in JoinImageTiles. |
DomainError | Product of inRowCount and inColumnCount must be equal to size of inImages array in JoinImageTiles. |