You are here: Start » AVL.NET » Function Reference » Image » Image Spatial Transforms » AVL.JoinImages

AVL.JoinImages

Creates a single image by glueing together the two input images in horizontal or vertical direction.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void JoinImages
(
	AvlNet.Image inImage1,
	AvlNet.Image inImage2,
	AvlNet.JoinDirection inDirection,
	int inMargin,
	AvlNet.Image outImage
)

Parameters

Name Type Range Default Description
inImage1AvlNet.ImageFirst input image.
inImage2AvlNet.ImageSecond input image.
inDirectionAvlNet.JoinDirectionDirection in which images are joined.
inMarginint<0, INF>0Thickness (in pixels) of black frame around joined images. Default value: 0.
outImageAvlNet.ImageOutput 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.

Function Overrides

See also