我有一个 base64 img 编码,你可以在这里找到。我怎样才能得到它的高度和宽度?
JS - 从 base64 代码中获取图像宽度和高度
IT技术
javascript
jquery
image
base64
dimensions
2021-01-25 17:36:11
4个回答
var i = new Image();
i.onload = function(){
alert( i.width+", "+i.height );
};
i.src = imageData;
对于同步使用,只需将其包装成这样的Promise:
function getImageDimensions(file) {
return new Promise (function (resolved, rejected) {
var i = new Image()
i.onload = function(){
resolved({w: i.width, h: i.height})
};
i.src = file
})
}
那么您可以使用 await 以同步编码样式获取数据:
var dimensions = await getImageDimensions(file)
我发现使用.naturalWidth
并.naturalHeight
获得了最好的结果。
const img = new Image();
img.src = 'https://via.placeholder.com/350x150';
img.onload = function() {
const imgWidth = img.naturalWidth;
const imgHeight = img.naturalHeight;
console.log('imgWidth: ', imgWidth);
console.log('imgHeight: ', imgHeight);
};
文档:
- https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement/naturalWidth
- https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement/naturalHeight
这仅在现代浏览器中受支持。http://www.jacklmoore.com/notes/naturalwidth-and-naturalheight-in-ie/
创建一个隐藏的<img>
图像,然后使用 jquery .width() 和 . 高度()
$("body").append("<img id='hiddenImage' src='"+imageData+"' />");
var width = $('#hiddenImage').width();
var height = $('#hiddenImage').height();
$('#hiddenImage').remove();
alert("width:"+width+" height:"+height);
在这里测试: FIDDLE
图像最初不是创建隐藏的。它被创建,然后你得到宽度和高度,然后将其删除。这可能会导致大图像的可见性非常短,在这种情况下,您必须将图像包装在另一个容器中,并使该容器隐藏而不是图像本身。
另一个没有按照 gp. 的 anser 添加到 dom 的小提琴: 这里
其它你可能感兴趣的问题