You are here: Start » FIL.NET » Function Reference » Image » Image Spatial Transforms » FIL.JoinImages_OfArray
Creates a single image by glueing together many input images in horizontal or vertical direction.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void JoinImages_OfArray ( IList<FilNet.Image> inImages, FilNet.JoinDirection inDirection, int inMargin, FilNet.Image outImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImages | System.Collections.Generic.IList<FilNet.Image> | Array of input images. | ||
![]() | inDirection | FilNet.JoinDirection | Direction in which images are joined. | ||
![]() | inMargin | int | <0, INF> | 0 | Thickness (in pixels) of black frame around joined images. Default value: 0. |
![]() | outImage | FilNet.Image | Output image. |
Examples
![]() |
![]() |
![]() |
|
![]() |
|
![]() |
JoinImages used to join multiple image stripes into a single image.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Input images do not have compatible dimensions in JoinImages_OfArray. |
DomainError | Input images do not have the same pixel format in JoinImages_OfArray. |
DomainError | Unknown value of JoinDirection in JoinImages_OfArray. |