Does anyone know what the calculation is for working out the new height when an image is resized while maintaining aspect ratio?
I am doing this manually so just need the formula.
thanks!
Printable View
Does anyone know what the calculation is for working out the new height when an image is resized while maintaining aspect ratio?
I am doing this manually so just need the formula.
thanks!
That's ok, I figure it out.
width * (height/width)
aspect = oldwidth/newwidth
newheight=oldheight/aspect