码迷,mamicode.com
首页 > Web开发 > 详细

在js中获取上传图片的宽度和高度

时间:2018-03-15 11:12:06      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:res   htm   das   nbsp   width   apu   load   map   col   

Html:

1 <input type="file" id="MapUploadTd" onchange="getMapPictureSize(this.files[0])"/>

Js:

 1 var mapPictureSize = [];
 2 
 3 function getMapPictureSize(file) {
 4     var reader = new FileReader;
 5     reader.onload = function (evt) {
 6         var image = new Image();
 7         image.onload = function () {
 8             mapPictureSize[0] = this.width + "";
 9             mapPictureSize[1] = this.height + "";
10             console.log(mapPictureSize);
11         };
12         image.src = evt.target.result;
13     };
14     reader.readAsDataURL(file);
15 }

 

在js中获取上传图片的宽度和高度

标签:res   htm   das   nbsp   width   apu   load   map   col   

原文地址:https://www.cnblogs.com/NickyLi/p/8571490.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!