[Closed] Rotating images before using image.Composite
Posted: 2017-08-08T13:39:23-07:00
Hello, I am trying to rotate some images before calling Composite on them (I am adding 6 images to a single image) wondering how best to do this, seeing how I am not having any luck:
I've tried the following:
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}");