I was planning to publish a new release tonight but I will delay it a couple of days so I can add the constructor and fix the Geometry bug.
I just realized that for your situation MagickImageCollection.AppendHorizontally should be enough:
I just realized that for your situation MagickImageCollection.AppendHorizontally should be enough:
using (MagickImageCollection images = new MagickImageCollection()) { // Add the first image MagickImage first = new MagickImage("blue.png"); images.Add(first); // Add the second image MagickImage second = new MagickImage("yellow.png"); images.Add(second); images.Add(first); images.Add(first); using (MagickImage result = images.AppendHorizontally()) { // Save the result result.Write("out.png"); } }