js에서 업로드된 그림의 너비와 높이를 가져옵니다.

2466 단어
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 }

 
다음으로 전송:https://www.cnblogs.com/NickyLi/p/8571490.html

좋은 웹페이지 즐겨찾기