I've tried the following:
Code: Select all
//This does not rotate, I even tried writing the image right after.
MagickImage image = new MagickImage("MyImagePath");
image.Rotate(rotation);
Code: Select all
//This does not work either with the -rotate argument.
image2.Composite(image, image.Width * x, image.Height * y, new CompositeOperator(), $"-rotate {rotation}");