網頁端上傳圖片案例,包含功能:壓縮後上傳、解決了圖片顛倒(朝向錯誤)問題、安卓手機不能現拍、安卓手機部分圖片不能上傳jquery
引用 js:chrome
jquery.js瀏覽器
exif.js網絡
LocalResizeIMG.js測試
完整測試例子代碼包下載blog
一:下面這種方式,chrome瀏覽器要好久才能反應過來(斷開網絡,反應迅速)圖片
<input type="file" id="file" style="display:none">ip
二:下面這種方式,安卓手機有些圖片上傳不了(並且不能使用現拍功能:即只能上傳手機上已有的圖片)get
<input type="file" accept="image/jpeg,image/png" id="file" style="display:none">input
三:下面這種方式,解決了上面全部的問題
<input type="file" accept="image/*" id="file" style="display:none">