Hi,
I am first time using the Magick.Net to perform image operations. When I use the Rotate function to rotate the image, it's rotate the image but reduce the image size as well as lost the alignment. Could you please assist how can rotate the image without losing the image size and alignment.
I am using below code to rotate the image.
using (MagickImage image = new MagickImage(imagePath))
{
Thanks,
Gajendra.
I am first time using the Magick.Net to perform image operations. When I use the Rotate function to rotate the image, it's rotate the image but reduce the image size as well as lost the alignment. Could you please assist how can rotate the image without losing the image size and alignment.
I am using below code to rotate the image.
using (MagickImage image = new MagickImage(imagePath))
{
image.Rotate(40);
image.RePage();
}Thanks,
Gajendra.