반응형
Javascript로 Image Size(Width & height) 알아내기
다음과 같이 하면, JavaScript로 이미지 크기를 알아낼 수 있다.
<script language="javascript">
var img = new Image();
img.onload = function() {
var w = this.width;
var h = this.height;
alert("width : " + w + ", height : " + h);
}
img.src = '[이미지 경로]';
</script>
예를 들어, 다음과 같이 하면 티스토리 로고의 가로, 세로를 알아낼 수 있다.
<script language="javascript">
var img = new Image();
img.onload = function() {
var w = this.width;
var h = this.height;
alert("width : " + w + ", height : " + h);
}
function setImgSrc() {
img.src = 'http://i1.daumcdn.net/cfs.tistory/static/top/tistory_logo.gif';
}
</script>
다음 이미지를 클릭해 보세요.
<img src="http://i1.daumcdn.net/cfs.tistory/static/top/tistory_logo.gif"
onclick="javascript:setImgSrc();" />
반응형
'프로그래밍' 카테고리의 다른 글
[JavaScript]원하는 바이트수만큼 문자열 잘라내기 (0) | 2015.11.04 |
---|---|
생성자에서 다른 생성자 호출하는 방법 - Java, C# (0) | 2015.10.13 |
IE의 다운로드 경로에 파일이 없는 경우 (0) | 2015.08.18 |
Linux 명령어 Tip - grep & find (0) | 2015.08.12 |
C#에서, 한글과 영어가 섞인 경우의 Format 정렬 (0) | 2015.07.23 |