There is not support for the tile operator in Magick.NET yet. You could accomplish the same output image if you tile the image yourself. You could start with an output image of the same size as your original image and use the MagickImageCollection class to combine your images. You can create a duplicate with the Clone method. And then use AppendHorizontally/AppendVertically of the MagickImageCollection to combine your images. I will look into ImageMagick to see how the tile command works and see if I can add it.
↧