获取图片的宽高
// 图片地址 var imgURL = "http://celiang.oss-cn-hangzhou.aliyuncs.com/measurement/2022-05/19/G0JSVphpS2MItH1652924237220519.jpg"; // 创建实例对象 var img = new Image() // 图片地址 img.src = imgURL // 打印 console.log('width:'+img.width+',height:'+img.height);