调整图像大小并保持宽高比

时间:2013-04-05 06:18:47

标签: image aspect-ratio

给定高度和宽度。如何调整图像大小以包含到我的图像的最大持有者,但保持纵横比?

2 个答案:

答案 0 :(得分:3)

使用你的数学

这将有助于

enter image description here

答案 1 :(得分:2)

像这样:

sx = original_width/destination_width
sy = original_height/destination_height
if sx*original_height > destination_height:
    s = sy
else:
    s = sx
new_width = original_width*s
new_height = original_height*s