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 | |
|---|---|---|---|---|---|
![]() |
inImage1 | Image | First input image | ||
![]() |
inImage2 | Image | Second input image | ||
![]() |
inImage3 | Image | None | None | Third input image | |
![]() |
inImage4 | Image | None | None | Fourth input image | |
![]() |
inDirection | JoinDirection | JoinDirection.Horizontal | Direction in which images are joined | |
![]() |
inMargin | int | 0 - ![]() |
Thickness (in pixels) of black frame around joined images | |
![]() |
outImage | Image | Output image |



