在这里改变大小?我找不到正确的方法
var img = new Image();
img.src = newImg.ImagePath;
$(img).width(width_in_pixels).height(height_in_pixels);
您$(img)
也可以使用$('selector')
. 如果你想创建一个新的,使用这个:
$('<img/>', {src: 'url to the image'}).width(width_in_pixels).height(height_in_pixels).appendTo('#someElement');
一个100px x 100px
图像。
var img = new Image();
img.src = newImg.ImagePath;
img.width = 100;
img.height = 100;