0

我有一个输入文本字段,用户在其中提供图像的源 url,例如 http://mysite/images/STARTPAGE_LOGO.gif是一个有效值。

我的 html 文档中没有任何img标签或其他内容。如何确定用户输入的 URL 中存在的图像的尺寸。

4

2 回答 2

12

没有加载图像的方法来找出图像的宽度和高度,因此您必须动态加载它,为此您可以使用

function getDimensions(_src,_callback){
     /* create a new image , not linked anywhere in document */
     var img = document.createElement('img');
     /* set the source of the image to what u want */
     img.src=_src;
     /* Wait the image to load and when its so call the callback function */
     /* If you want the actual natural dimensions of the image use naturalWidth and natural height instead */
     img.onload = function () { _callback(img.width,img.height) };
}

以纯 JavaScript 精神声明上述函数后,您可以执行类似的操作

getDimensions('http://mysite/images/STARTPAGE_LOGO.gif',function(w,h){
 console.log( "Height : ",h,"Width:",w);
});
于 2012-08-13T13:11:00.163 回答
-3

HTML:

   <input id="src" type="text" value="https://www.google.pl/images/srpr/logo3w.png"/>

JAVASCRIPT:

var img = new Image; // create tmp image element  
                     // is equal to document.createElement('img');

onload 事件绑定函数,加载图片时会自动调用。

   img.onload = function(){
     alert( this.width +" : " + this.height );
   }; 

设置图片来源;

img.src = document.getElementById('src').value // get the value of input element;

出于对 jQuery 的好奇:

$('<img/>').attr('src',$('#src').val()).bind('load',function(){
     alert( this.width +' x ' + this.height );
});
于 2012-08-13T13:07:57.537 回答