gpt4 book ai didi

javascript - 获取图像的宽度和高度

转载 作者:行者123 更新时间:2023-12-04 08:04:48 24 4
gpt4 key购买 nike

所以我有一个元素,我想获取图像的高度和宽度属性,但这是我的 css:

let h = Number(window.getComputedStyle(document.getElementById('image')).getPropertyValue('height').replace('px',''));
let w = Number(window.getComputedStyle(document.getElementById('image')).getPropertyValue('width').replace('px',''));
console.log(`width`,w);
console.log(`height`,h);
img#image{
z-index: 0;
display: block;
top: 0px;
margin-left: auto;
margin-right: auto;

max-height: 100%;
max-width: 100%;

position: absolute;
align-self: center;

margin: auto;
left: 0;
right: 0;
}
<img src="src.jpg" id="image">

如您所见,我没有设置高度和宽度属性,因为我不希望图像具有固定的宽度和高度,所以有人介绍我使用:
window.getComputedStyle(document.getElementById('image')).getPropertyValue('height')
所以我做了,但根据我的经验,它并不准确:
JS :
let h = Number(window.getComputedStyle(document.getElementById('image')).getPropertyValue('height').replace('px',''))
let w = Number(window.getComputedStyle(document.getElementById('image')).getPropertyValue('width').replace('px',''))
console.log(`width`,w)
console.log(`height`,h)
这是它记录的结果的屏幕截图:
https://media.discordapp.net/attachments/244238416248569857/812200556403490847/Screenshot_1540.png?width=1067&height=600
这是元素的实际宽度和高度的屏幕截图:
https://media.discordapp.net/attachments/244238416248569857/812200556000313354/Screenshot_1541.png?width=1067&height=600
如您所见,图像为 670 x 514,但它的高度为 459,有人可以帮我解决这个问题吗?

最佳答案

棘手的世界
问题是您的图像需要先加载。
不过,这是一个非常有趣的问题。
在这里,在下面的代码中,我们正在检查图像是否已加载,如果是,则直接获取宽度和高度,没有任何问题。
但是如果图像还没有加载,我们设置一个事件监听器来跟踪它。当它被加载时,事件监听器中的函数将被调用,仅此而已。现在您可以访问有关图像的所有信息。

const img = document.getElementById("img");

if(img.complete) {
console.log(img.width, img.height);
} else {
img.addEventListener('load', function() {
const imageWidthRendered = this.width;
const imageHeightRendered = this.height;
console.log(imageWidthRendered, imageHeightRendered)
});
}
<img id="img" src="https://source.unsplash.com/random/100x200">

关于javascript - 获取图像的宽度和高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66272500/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com