在開發 H5 應用的時候碰到一個問題,
應用只須要一張小的縮略圖,
而用戶用手機上傳的確是一張大圖,
手機攝像機拍的圖片好幾 M,這可要浪費不少流量。javascript
像我這麼爲用戶着想的程序員,絕對不會讓這種事情發生的,
因而就有了本文。java
經過 File API 獲取圖片。程序員
var input = document.createElement('input'); input.type = 'file'; input.addEventListener('change', function() { var file = this.files[0]; }); input.click();
使用 createObjectURL()
或者 FileReader
預覽圖片web
var img = document.createElement('img'); img.src = window.URL.createObjectURL(file);
var img = document.createElement("img"); var reader = new FileReader(); reader.onload = function(e) { img.src = e.target.result; } reader.readAsDataURL(file);
var canvas = document.createElement("canvas"); var ctx = canvas.getContext("2d"); var MAX_WIDTH = 800; var MAX_HEIGHT = 600; var width = img.width; var height = img.height; if (width > height) { if (width > MAX_WIDTH) { height *= MAX_WIDTH / width; width = MAX_WIDTH; } } else { if (height > MAX_HEIGHT) { width *= MAX_HEIGHT / height; height = MAX_HEIGHT; } } canvas.width = width; canvas.height = height; ctx.drawImage(img, 0, 0, width, height);
canvas.toBlob(function(blob) { var form = new FormData(); form.append('file', blob); fetch('/api/upload', {method: 'POST', body: form}); });