我正在尝试查找图像aspectratio,因此width/height
给出了任何图像的宽高比。但是,当我将max-width
或max-height
设置为somevalue
时,我想设置图像的宽度和高度,就像设置图像的宽度和高度一样。
如何进行此计算以查找具有正确宽高比的图像的宽度和高度?
new_width = width/height*user_definedwidth;
像这样,但我想计算任何图像的宽度和高度?
How mozilla sets both width and height with aspect ratio when max-width or max-height have set.
我需要向用户上传的图片显示正确的宽高比,但需要调整大尺寸图片。
<img src="http://hdcomputerwallpaper.com/wp-content/uploads/2013/12/Puppy-images.jpg" style='max-width:200px;'/>
&#13;