如何在chrome app中设置图像的宽度和高度?

时间:2015-06-06 08:05:08

标签: javascript jquery ajax

var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://supersweetdomainbutnotcspfriendly.com/image.png',true);
xhr.responseType = 'blob';
xhr.onload = function(e) {
var img = document.createElement('img');
img.src = window.URL.createObjectURL(this.response);
document.body.appendChild(img);
};

xhr.send();

通过使用这个我可以得到图像,但默认大小。所以请告诉我如何设置该图像的宽度和高度?

1 个答案:

答案 0 :(得分:0)

您可以在var img = document.createElement('img');

下添加两行
img.setAttribute('width', '100');
img.setAttribute('height', '100');