The problem is when i try to resize the image to a rather large size i end up with a different width and height then the one I specified.
Code: Select all
Image img_Ressizing;
img_Ressizing.read("d:\black.bmp");
img_Ressizing.resize(Geometry(2304, 3456));
img_Ressizing.write("d:\resized.jpg");
Is geometry or resize trying to maintain a 4:3 aspect ratio?
If so how do I stop it from doing that?