📜  全宽高清图像 javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:15.836000             🧑  作者: Mango

代码示例1
var img = new Image();
img.onload = function() {
  alert(this.width + 'x' + this.height);
}
img.src = 'http://www.google.com/intl/en_ALL/images/logo.gif';