js 获取file控件 选中图片的宽高
2021-03-06 12:30
标签:files width inpu image this console 宽高 src file控件 input file控件选中文件后,转为image对象就ok了 js 获取file控件 选中图片的宽高 标签:files width inpu image this console 宽高 src file控件 原文地址:https://www.cnblogs.com/liuzheng0612/p/12896017.html var file = $(e)[0].files[0];
let url = window.URL || window.webkitURL;
console.log(url.createObjectURL(file)); //file 选中的文件
let img = new Image(); //手动创建一个Image对象
img.src = url.createObjectURL(file);//创建Image的对象的url
img.onload = function () {
console.log(‘height:‘ + this.height + ‘----width:‘ + this.width)
}
文章标题:js 获取file控件 选中图片的宽高
文章链接:http://soscw.com/index.php/essay/60867.html