# 如何改變圖像的真實大小,實現網頁上傳任意大小的圖像?
我想從本地上傳一張圖片,上傳之前我想對其降采樣或者放大,我改變image.width和image.height可以讓圖片以任意大小顯示,但是上傳的時候任然是上傳的原圖。
**想問哈各位大神如何才能真正的改變圖片的大小,實現上傳任意大小的圖片?**
這是我調試的代碼:
input id="input_upload" type="file"/ >
canvas id="canvas" style="border:1px solid #c3c3c3;" >
var canvas = document.getElementById("canvas");
var context = canvas.getContext("2d");
$('input[type=file]').change(function(){
var file=this.files[0];
var reader=new FileReader();
var image=new Image();
reader.readAsDataURL(file);
reader.onload=function(){
// 通過 reader.result 來訪問生成的 DataURL
var url=reader.result;
image.src=url;
alert(image.width);
alert(image.height);
image.height /=4;
image.width /=4;
canvas.setAttribute("width", image.width+"px");
canvas.setAttribute("height", image.height+"px");
alert(image.naturalWidth);
alert(image.naturalHeight);
context.drawImage(image,0,0,image.width,image.height);
};
});
canvas裁剪後,截屏再上傳
http://segmentfault.com/a/1190000000754560