You are here: Start » AVL.NET » AVL.JoinImageTiles

AVL.JoinImageTiles

Joins previously cut tiles into single image.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void JoinImageTiles
(
	IList<AvlNet.Image> inImages,
	int inRowCount,
	int inColumnCount,
	AvlNet.Image outJoinedImage
)

Parameters

Name Type Range Default Description
inImagesSystem.Collections.Generic.IList<AvlNet.Image>Array of image tiles.
inRowCountint<1, INF>Defines how many output image rows there are in inImages.
inColumnCountint<1, INF>Defines how many images builds one row in inImages.
outJoinedImageAvlNet.ImageGlued 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 Product of inRowCount and inColumnCount must be equal to size of inImages array in JoinImageTiles.
RuntimeError Could not join images in JoinImageTiles.

See also