Project

ImagePlayground

Automate image processing, codes, metadata, charts, topology, and visual stories from PowerShell.

Stars 100
Forks 7
Total downloads 712,347
Release ImagePlayground-PowerShellModule.v3.2.7
Language: C# Updated: 2026-08-25

API Reference

Command

New-ImageMosaic

Namespace ImagePlayground
Inputs
System.String

Creates a mosaic image from multiple files.

Remarks

Creates a mosaic image from multiple files.

Examples

Authored help example

Create a 2x2 mosaic


New-ImageMosaic -FilePaths img1.png,img2.png,img3.png,img4.png -OutputPath out.png -Columns 2 -Width 100 -Height 100
        

Common Parameters

This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.

For more information, see about_CommonParameters.

Syntax

New-ImageMosaic -Columns <Int32> -FilePaths <String[]> -Height <Int32> [-Open] -OutputPath <String> -Width <Int32> [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Columns Int32 requiredposition: namedpipeline: False
Number of columns in the mosaic.
FilePaths String[] requiredposition: 0pipeline: False
Source image paths.
Height Int32 requiredposition: namedpipeline: False
Height of each tile.
Open SwitchParameter optionalposition: namedpipeline: False
Open the mosaic after creation.
OutputPath String requiredposition: 1pipeline: True (ByValue)
Output file path.
Width Int32 requiredposition: namedpipeline: False
Width of each tile.