In case you need to do this more often, you may want to take a look at Frederik's suggestion of ImageMagick, after all: Combining a matrix of images can be as simple as executing
magick montage -geometry 200x200 -tile 3x3 Tile*.png Output.png
This assumes the tiles are to be arranged in a 3×3 grid and their size should be 200×200 pixels in the combined image. By default, they are arranged by row (i.e. the first three images would constitute the first row etc.), so the * syntax should work as long as your images are named like this:
Tile_0_0.png Tile_0_1.png Tile_0_2.png
Tile_1_0.png Tile_1_1.png Tile_1_2.png
Tile_2_0.png Tile_2_1.png Tile_2_2.png
If this is not the case, you can write a text file listing the images in the expected order and use
magick montage -geometry 200x200 -tile 3x3 @Tiles.txt Output.png
For example, if your tiles have the column dimension first, i.e.
Tile_0_0.png Tile_1_0.png Tile_2_0.png
Tile_0_1.png Tile_1_1.png Tile_2_1.png
Tile_0_2.png Tile_1_2.png Tile_2_2.png
your text file should look like this:
Tile_0_0.png
Tile_1_0.png
Tile_2_0.png
Tile_0_1.png
Tile_1_1.png
Tile_2_1.png
Tile_0_2.png
Tile_1_2.png
Tile_2_2.png
Of course, there may be better ways to deal with that – you could check out some options on this page of examples for an older version.
In case you need to do this more often, you may want to take a look at Frederik's suggestion of [ImageMagick](https://imagemagick.org/script/download.php#windows), after all: Combining a matrix of images can be as simple as executing
````
magick montage -geometry 200x200 -tile 3x3 Tile*.png Output.png
````
This assumes the tiles are to be arranged in a 3×3 grid and their size should be 200×200 pixels in the combined image. By default, they are arranged by row (i.e. the first three images would constitute the first row etc.), so the * syntax should work as long as your images are named like this:
````
Tile_0_0.png Tile_0_1.png Tile_0_2.png
Tile_1_0.png Tile_1_1.png Tile_1_2.png
Tile_2_0.png Tile_2_1.png Tile_2_2.png
````
If this is not the case, you can write a text file listing the images in the expected order and use
````
magick montage -geometry 200x200 -tile 3x3 @Tiles.txt Output.png
````
For example, if your tiles have the column dimension first, i.e.
````
Tile_0_0.png Tile_1_0.png Tile_2_0.png
Tile_0_1.png Tile_1_1.png Tile_2_1.png
Tile_0_2.png Tile_1_2.png Tile_2_2.png
````
your text file should look like this:
````
Tile_0_0.png
Tile_1_0.png
Tile_2_0.png
Tile_0_1.png
Tile_1_1.png
Tile_2_1.png
Tile_0_2.png
Tile_1_2.png
Tile_2_2.png
````
Of course, there may be better ways to deal with that – you could check out some options on [this page of examples](https://legacy.imagemagick.org/Usage/montage/) for an older version.