js 获取file控件 选中图片的宽高

2021-03-06 12:30

阅读:640

标签: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)
            }

 

js 获取file控件 选中图片的宽高

标签:files   width   inpu   image   this   console   宽高   src   file控件   

原文地址:https://www.cnblogs.com/liuzheng0612/p/12896017.html


评论


亲,登录后才可以留言!