let img = new Image();
img.src = "myImage.png";
img.decode().then(() => {
let width = img.width;
let height = img.height;
// Do something with dimensions
});
同步使用(在异步函数内):
let img = new Image();
img.src = "myImage.png";
await img.decode();
let width = img.width;
let height = img.height;
// Do something with dimensions
5条答案
按热度按时间omhiaaxx1#
5us2dqdw2#
对于同步使用,只需将其 Package 成如下的promise:
然后你可以使用await来获取同步编码风格的数据:
uxh89sit3#
我发现使用
.naturalWidth
和.naturalHeight
的效果最好。文件:
只有现代浏览器才支持此功能。* NaturalWidth and NaturalHeight in IE *
qxsslcnc4#
更现代的解决方案是使用
HTMLImageElement.decode()
而不是onload
事件。decode()
返回一个promise,因此可以与await
同步使用。异步使用:
同步使用(在异步函数内):
ubbxdtey5#
使用该图像创建隐藏的
<img>
,然后使用jQuery的. width()和. height()此处测试:JSFiddle
图像最初不是创建为隐藏的。它是创建的,然后获得宽度和高度,然后将其删除。这可能会导致大型图像的可见性非常短。在这种情况下,您必须将图像 Package 到另一个容器中,并使该容器隐藏,而不是图像本身隐藏。
另一个Fiddle没有按照gp.的答案添加到DOM中:here