【发布时间】:2021-12-03 12:12:42
【问题描述】:
有没有办法用 JavaScript 确定 gif 图像的宽度和高度。 我没有谷歌结果。 请让我解决问题。 和这篇文章有关。
【问题讨论】:
标签: javascript image gif dimension
有没有办法用 JavaScript 确定 gif 图像的宽度和高度。 我没有谷歌结果。 请让我解决问题。 和这篇文章有关。
【问题讨论】:
标签: javascript image gif dimension
const img = new Image();
img.onload = function() {
alert(this.width + 'x' + this.height);
}
img.src ='your image path here';
【讨论】: