这是我的网页的屏幕截图,在提供图像下,有显示网络图像的图像。
http://imageshack.us/a/img684/9584/screenshot20120920at335.png
但是,实际的网络图像是
http://imageshack.us/a/img717/5240/1348180361.png
该容器的代码是
$('#image_upload_form input').change(function() {
success: function ( data ) {
var jsonData=data;
if(jsonData.status==1)
{
var imagePath="http://www.test.com/play2win_offerimages/" + jsonData.image_name;
$('#offer_detail input[name=image]').val(imagePath);
myImage = new Image();
myImage.src = imagePath;
myImage.width=100;
myImage.height=100;
$(myImage).load(function() {
$('#offer_image').updateimgto(myImage.src);
});
} //status=1
} //success
}); //submit
我将图像 myImage 设置为 100x100。然而,正如您从网页中看到的那样,只显示了图像的一部分。
现在,我在页面上显示的网页图像被裁剪了。如何解决这个问题?
我不想裁剪,只需要重新缩放以适合容器。
image_upload_form 的 html
<form id="image_upload_form" enctype="multipart/form-data" action="http://www.test.com/play2win_api/offers/upload_image" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="8192000" />
<input name="offer_image" type="file" id="imagefile"/></form>