js取得画像の真のサイズ
290 ワード
var img = new Image();
img.onload = function () { //
console.log(img.width);
console.log(img.height)
};
img.src = 'Chrysanthemum.jpg';