我有这个简单的 html 显示图像。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Image Object Fit</title>
<style>
body {
margin: 0;
width: 100vw;
height: 100vh;
}
img {
width: 100%;
height: 100%;
object-fit: contain;
}
</style>
</head>
<body>
<img src="https://placekitten.com/200/300" alt="" />
</body>
</html>
https://jsbin.com/hapoqog/edit?html,输出
img 元素具有不同的属性:width,height,offsetWidth,offsetHeight,naturalWidth,naturalHeight
但它们都不能正确给出渲染图像的尺寸。
如何计算渲染图像的宽度、高度和比例/缩放?