項目分享五:H5圖片壓縮與上傳

1、簡介

圖片的壓縮與上傳,是APP裏一個很經常使用的功能。咱們來年看 ChiTuStore 是怎樣作的。相關文件 App/Module/User/UserInfo.html,App/Module/User/UserInfo.tshtml

 

2、HTML佈局

HTML 文件中,有以下二句,第一句就是上圖所看到的圖片,其中的 class 表示該圖片以圓形來顯示,而且靠右。第二句是一個 Input 控件,其類型爲 file ,是用來上傳文件的。值得注意的是 style,這的做用是讓該控件與圖片重疊,而且透明(opacity:0),accept="image/*" 的做用是隻上傳圖片。node

 <img data-bind="attr:{src:userInfo.HeadImageUrl}" class="img-circle pull-right" style="width:70px;height:70px;">
 <input type="file" style="position:absolute;top:0px;left:0px;opacity:0;width:100%;height:90px;" accept="image/*">

 

3、圖片的壓縮

傳統 WEB 的作法,都是把圖片直接上傳到服務端,而後在服務端進行壓縮。但如今,在H5 中,是能夠對圖片進行壓縮再上傳的。咱們來看一下 JS 代碼,其中的 ImageFileResize 就是用來處理圖片的壓縮的。git

    page.viewChanged.add(() => {
        var e = page.nodes().content.querySelector('[type="file"]');
        var imageFileResize = new ImageFileResize(<HTMLInputElement>e, { maxWidth: 100, maxHeight: 100 });
        imageFileResize.imageResized = (urls: string[], thumbs1: string[], thumbs2: string[]) => {
            model.userInfo.HeadImageUrl(thumbs1[0]);
            member.setUserInfo(mapping.toJS(model.userInfo));
        }
        ko.applyBindings(model, page.node());
    })

咱們如今來看一下 ImageFileResize 中的關鍵代碼,這段代碼的做用是用來把 <input type="file"/> 選取的文件,進行壓縮的。其中有幾個關鍵的對象、函數,是 H5 中的 API,FileReader,createObjectURL,Image。github

這幾個對象、函數的具體用法,在這裏就不展開說了,網上搜一下就能夠找到答案了。web

 var reader = new FileReader();
 reader.readAsArrayBuffer(file);
 reader.onload = (ev: Event) => {
      var blob = new Blob([event.target['result']]);
      window['URL'] = window['URL'] || window['webkitURL'];
      var blobURL = window['URL'].createObjectURL(blob); // and get it's URL
      var image = new Image();
      image.src = blobURL;
      image.onload = () => {
           var url = this.resizeMe(image, max_width, max_height);
           var thumb = this.resizeMe(image, this.thumb2.maxWidth, this.thumb2.maxHeight);
           result.resolve({ index: index, url: url, data: url, thumb: thumb });
      }
 }

下面咱們再來看一下 resizeMe 函數,這個函數的把的圖片(HTMLImageElement),轉換爲了 base64 的字符串,其中一個重要的對象就是 canvas,它也是 H5 中的對象。經過它能夠把圖片轉換爲 base64 字符串。數據庫

 private resizeMe(img: HTMLImageElement, max_width: number, max_height: number) {

        var canvas = document.createElement('canvas');

        var width: number = img.width;
        var height: number = img.height;

        // calculate the width and height, constraining the proportions
        if (width > height) {
            if (width > max_width) {
                height = Math.round(height *= max_width / width);
                width = max_width;
            }
        } else {
            if (height > max_height) {
                width = Math.round(width *= max_height / height);
                height = max_height;
            }
        }

        canvas.width = width;
        canvas.height = height;
        var ctx = canvas.getContext("2d");
        ctx.drawImage(img, 0, 0, width, height);

        return canvas.toDataURL("image/jpeg", 0.7);

    }

 

4、服務端的保存

服務的保存有兩種方法canvas

一、把 base64 字符串轉換爲二進制流,而後再保存爲圖片文件。瀏覽器

二、直接把 base64 保存數據庫。在這個項目,是把它保存到 MongoDB 數據庫。app

 

5、瀏覽器的坑

即然是經過瀏覽器進行壓縮上傳,那麼就沒法避免會有坑。函數

一、在 QQ 瀏覽器中,不起做用。聽說是不支持 canvas 。

二、在 APP 的混合開發中,在錘子 T2 的手機也不起做用。

 

6、小結

儘管在本地壓縮、預覽圖片有着很好的用戶體驗,可是兼容性差,若是是 APP 的開發,仍是調用原生的接口吧。若是瀏覽器的 WEB APP 項目,仍是得考慮兼容性。不支持 canvas 的瀏覽器,使用傳統的方法來上傳圖片。

 

代碼已經開源在 github,感興趣的朋友能夠自行下載。https://github.com/ansiboy/ChiTuStore

 

項目分享四:購物車頁面的更新 

項目分享三:頁面之間的傳值

項目分享二:APP 小紅點中數字的處理

項目分享一:在項目中使用 IScroll 所碰到的那些坑

相關文章
相關標籤/搜索