标签:files width inpu image this console 宽高 src file控件
input file控件选中文件后,转为image对象就ok了
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) }
标签:files width inpu image this console 宽高 src file控件
原文地址:https://www.cnblogs.com/liuzheng0612/p/12896017.html