<img src='xyz.jpg'>
クライアント側でサイズ変更の物理的な寸法を決定する、信頼できるフレームワークに依存しない方法はありますか?
回答:
次の2つのオプションがあります。
オプション1:
width
およびheight
属性を削除し、読み取りoffsetWidth
およびoffsetHeight
オプション2:
JavaScriptの作成Image
オブジェクトを、設定src
、および読みwidth
とheight
(あなたもこれを行うには、それをページに追加する必要はありません)。
function getImgSize(imgSrc) {
var newImg = new Image();
newImg.onload = function() {
var height = newImg.height;
var width = newImg.width;
alert ('The image size is '+width+'*'+height);
}
newImg.src = imgSrc; // this must be done AFTER setting onload
}
Pekkaによる編集:コメントで合意したように、画像の「onload」イベントで実行するように関数を変更しました。そうでなければ、大きな画像で、height
そしてwidth
イメージがまだロードされていなかったため、何も返しません。
newImg.onload
、幅/高さを設定したときに画像が確実に読み込まれるようにする機能を備えています。それに応じて回答を編集してもよろしいですか?
if(newImg.complete || newImg.readyState === 4) newImg.onload();
関数の最後に追加すると、画像がキャッシュから読み込まれたときにonloadが起動しないというChrome / OSXの問題が修正されます。
画像(少なくともFirefox上)にはnaturalWidth
/ heightプロパティimg.naturalWidth
があり、元の幅を取得するために使用できます
var img = document.getElementsByTagName("img")[0];
img.onload=function(){
console.log("Width",img.naturalWidth);
console.log("Height",img.naturalHeight);
}
/* Function to return the DOM object's in crossbrowser style */
function widthCrossBrowser(element) {
/* element - DOM element */
/* For FireFox & IE */
if( element.width != undefined && element.width != '' && element.width != 0){
this.width = element.width;
}
/* For FireFox & IE */
else if(element.clientWidth != undefined && element.clientWidth != '' && element.clientWidth != 0){
this.width = element.clientWidth;
}
/* For Chrome * FireFox */
else if(element.naturalWidth != undefined && element.naturalWidth != '' && element.naturalWidth != 0){
this.width = element.naturalWidth;
}
/* For FireFox & IE */
else if(element.offsetWidth != undefined && element.offsetWidth != '' && element.offsetWidth != 0){
this.width = element.offsetWidth;
}
/*
console.info(' widthWidth width:', element.width);
console.info(' clntWidth clientWidth:', element.clientWidth);
console.info(' natWidth naturalWidth:', element.naturalWidth);
console.info(' offstWidth offsetWidth:',element.offsetWidth);
console.info(' parseInt(this.width):',parseInt(this.width));
*/
return parseInt(this.width);
}
var elementWidth = widthCrossBrowser(element);
element
jQueryの選択は?高さはどうですか?
ガブリエルの2番目のオプションを少し変更して、より使いやすくします。
function getImgSize(imgSrc, callback) {
var newImg = new Image();
newImg.onload = function () {
if (callback != undefined)
callback({width: newImg.width, height: newImg.height})
}
newImg.src = imgSrc;
}
HTML:
<img id="_temp_circlePic" src="http://localhost/myimage.png"
style="width: 100%; height:100%">
呼び出しの例:
getImgSize($("#_temp_circlePic").attr("src"), function (imgSize) {
// do what you want with the image's size.
var ratio = imgSize.height / $("#_temp_circlePic").height();
});
img.onload = function () {console.log(img.height, img.width)}