프론트기술/JavaScript
javascript 이미지 크기 불러오기
RevFactory
2014. 11. 18. 13:50
비동기로 이미지 불러오는 소스
$j("<img/>") .attr("src", thumbnailUrl) .load(function() { console.log(this.width); console.log(this.height); }); |
http://stackoverflow.com/questions/318630/get-real-image-width-and-height-with-javascript-in-safari-chrome