You are here: Start » AVL.NET » AVL.JoinImages(AvlNet.Image, AvlNet.Image, AvlNet.JoinDirection, AvlNet.Image)

AVL.JoinImages(AvlNet.Image, AvlNet.Image, AvlNet.JoinDirection, AvlNet.Image)

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

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax


public static void JoinImages(
	AvlNet.Image inImage1,
	AvlNet.Image inImage2,
	AvlNet.JoinDirection inDirection,
	out AvlNet.Image outImage
)

Parameters

inImage1
Type: AvlNet.Image
First input image
inImage2
Type: AvlNet.Image
Second input image
inDirection
Type: AvlNet.JoinDirection
Direction in which images are joined
outImage
Type: AvlNet.Image
Output image

Examples

JoinImages used to join two images side by side into a single image.

Errors

Error type Description
DomainError Input images do not have the same pixel format in JoinImages.
DomainError Input images do not have compatible dimensions in JoinImages.
DomainError Unknown value of JoinDirection in JoinImages.

See also