I'm trying to resize an image but it is always respecting the ratio. Is there any way to resize an image to a different ratio?
Image current size: 800 x 600
Target size: 1024 x 600
magickImage.Resize(1024, 600);
Result: 1024 x 768
Image current size: 800 x 600
Target size: 1024 x 600
magickImage.Resize(1024, 600);
Result: 1024 x 768