app直播源代码,Vue获取URL图片的宽高

app直播源代码,Vue获取URL图片的宽高

方法1:函数类型

 

datadragEnd() {
// 创建实例对象
var img = new Image();
// 图片地址
img.src = "http://celiang.oss-cn-hangzhou.aliyuncs.com/measurement/2022-05/19/G0JSVphpS2MItH1652924237220519.jpg";
let res = {}
img.onload = function () {
 res = {
width: img.width,
height: img.height
}
console.log(res); //获取到图片的宽高
 }

方法2:简便类型

 

// 图片地址
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);

 

以上就是 app直播源代码,Vue获取URL图片的宽高,更多内容欢迎关注之后的文章

 

posted @ 2022-06-13 14:15  云豹科技-苏凌霄  阅读(44)  评论(0)    收藏  举报