码迷,mamicode.com
首页 > Web开发 > 详细

图片压缩上传

时间:2020-02-22 15:48:37      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:attr   默认   res   error   pre   ++   onload   read   nodevalue   

图片压缩的方法

    // 图片压缩
    compressImage(file, success, error)  {
      // 图片小于1M不压缩
      // if (file.size < Math.pow(1024, 2)) {
      //   return success(file);
      // }
      const name = file.name; //文件名
      const reader = new FileReader();
      reader.readAsDataURL(file);
      reader.onload = e => {
        const src = e.target.result;

        const img = new Image();
        img.src = src;
        img.onload = e => {
          const w = img.width;
          const h = img.height;
          const quality = 0.8;  // 默认图片质量为0.92
          // 生成canvas
          const canvas = document.createElement(‘canvas‘);
          const ctx = canvas.getContext(‘2d‘);
          // 创建属性节点
          const anw = document.createAttribute("width");
          anw.nodeValue = w;
          const anh = document.createAttribute("height");
          anh.nodeValue = h;
          canvas.setAttributeNode(anw);
          canvas.setAttributeNode(anh);

          // 铺底色 PNG转JPEG时透明区域会变黑色
          ctx.fillStyle = "#fff";
          ctx.fillRect(0, 0, w, h);

          ctx.drawImage(img, 0, 0, w, h);
          // quality值越小,所绘制出的图像越模糊
          const base64 = canvas.toDataURL(‘image/jpg‘, quality); // 图片格式jpeg或webp可以选0-1质量区间

          // 返回base64转blob的值
          console.log(`原图${(src.length/1024).toFixed(2)}kb`, `新图${(base64.length/1024).toFixed(2)}kb`);
          // 去掉url的头,并转换为byte
          const bytes = window.atob(base64.split(‘,‘)[1]);
          // 处理异常,将ascii码小于0的转换为大于0
          const ab = new ArrayBuffer(bytes.length);
          const ia = new Uint8Array(ab);
          for (let i = 0; i < bytes.length; i++) {
            ia[i] = bytes.charCodeAt(i);
          }
          file = new Blob([ab], {type : ‘image/jpg‘});
          file.name = name;

          success(file);
        }
        img.onerror = e => {
          error(e);
        }
      }
      reader.onerror = e => {
        error(e);
      }
    },

调用上传

// file.file 原来的对象  obj 压缩好的对象
      this.compressImage(file.file, obj => {
        console.log(file.file)
        console.log(obj)
        file.status = ‘uploading‘
        file.message = ‘上传中...‘;
        setTimeout(() => {
          let formData = new FormData()
          formData.append(‘file‘, obj, obj.name)
          ........
        },1000)
      })

 

图片压缩上传

标签:attr   默认   res   error   pre   ++   onload   read   nodevalue   

原文地址:https://www.cnblogs.com/ronle/p/12345464.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!