You are here: Start » FIL.NET » Function Reference » Image » Image Spatial Transforms » FIL.JoinImages
Creates a single image by glueing together the two input images in horizontal or vertical direction.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void JoinImages ( FilNet.Image inImage1, FilNet.Image inImage2, NullableRef<FilNet.Image> inImage3, NullableRef<FilNet.Image> inImage4, FilNet.JoinDirection inDirection, int inMargin, FilNet.Image outImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage1 | FilNet.Image | First input image. | ||
![]() | inImage2 | FilNet.Image | Second input image. | ||
![]() | inImage3 | FilNet.NullableRef<FilNet.Image> | Third input image. Default value: ftl::NIL. | ||
![]() | inImage4 | FilNet.NullableRef<FilNet.Image> | Fourth input image. Default value: ftl::NIL. | ||
![]() | 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 two images side by side into a single image.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Input images do not have compatible dimensions in JoinImages. |
DomainError | Input images do not have the same pixel format in JoinImages. |
DomainError | Unknown value of JoinDirection in JoinImages. |