Notice
Recent Posts
Recent Comments
Link
이야기앱 세상
javaScript를 이용해서 업로드 이미지 사이즈(넓이, 높이) 구하기 본문
자바스크립트를 이용해서 업로드 이미지 사이즈(넓이, 높이) 구하기
<script type="text/javascript">
window.onload=function(){
var file = document.getElementById('file');
file.onchange=function(){
if(!file.files[0]){
alert('파일을 선택하세요!');
return;
}
var reader = new FileReader();
reader.readAsDataURL(file.files[0]);
reader.onload = function(){
var image = new Image();
image.src = reader.result;
image.onload=function(){
//이미지 파일의 넓이와 높이
alert(this.width +", " + this.height);
};
};
};
};
</script>
<input type="file" id="file">
반응형
'IT > JavaScript' 카테고리의 다른 글
Kakao map 사용시 CORS policy 오류에 대한 해결책 (0) | 2022.09.03 |
---|---|
CKEditor5에서 값을 읽기, 셋팅하기(또는 초기화) (0) | 2022.08.29 |
자바스크립트를 이용해서 스크롤을 DIV의 맨 아래로 이동하기 (0) | 2022.02.06 |
setTimeout 사용시 Uncaught TypeError: Illegal invocation이 발생할 경우 (0) | 2022.01.04 |
CKEditor5 다운로드 및 사용법 (0) | 2020.12.28 |
Comments