반응형
const getImageSize = (file: File, callback: (width: number, height: number) => void) => {
const reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = (e) => {
const image = new Image();
image.src = e.target.result as string;
image.onload = function () {
// eslint-disable-next-line @typescript-eslint/ban-ts-ignore
// @ts-ignore
callback(this.width, this.height);
};
};
}
반응형
'웹프로그래밍 > Javascript' 카테고리의 다른 글
validate JSON (JSON 여부 검사) (0) | 2020.07.08 |
---|---|
get only text by clipboard (0) | 2020.07.08 |
moment.js (날짜관련 작업을 위한 자바스크립트 라이브러리) (0) | 2020.02.11 |
[Javascript] 페이지를 떠날 때 경고창 띄우기 (0) | 2017.05.19 |
javascript ios app open self.location / window. not working (0) | 2016.05.31 |