JoinImages


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

Syntax

C++
Python
 
def JoinImages(
	inImage1: Image,
	inImage2: Image,
	inMargin: int,
	outImage: Image,
	/,
	*,
	inImage3: Image | None = None,
	inImage4: Image | None = None,
	inDirection: JoinDirection = JoinDirection.Horizontal
)
-> None

Parameters

Name Type Range Default Description
Input value inImage1 Image First input image
Input value inImage2 Image Second input image
Input value inImage3 Image | None None Third input image
Input value inImage4 Image | None None Fourth input image
Input value inDirection JoinDirection JoinDirection.Horizontal Direction in which images are joined
Input value inMargin int 0 - Thickness (in pixels) of black frame around joined images
Output value outImage Image Output image