美文网首页Vue
Vue lrz 图片压缩

Vue lrz 图片压缩

作者: 逗婆苍穹 | 来源:发表于2021-06-22 13:58 被阅读0次
     import lrz from "lrz";

     let imgAry = URL.createObjectURL(file, { quality: 0 });  // 默认0.7  图片压缩质量 0-1
     let lrzFile = await lrz(imgAry);
     let f = new window.File([lrzFile.file], file.name, {
        type: lrzFile.file.type,
      });

      const formData = new FormData();
      formData.append("file", f);
      let res = await this.$axios.uploadImage(formData);

相关文章

网友评论

    本文标题:Vue lrz 图片压缩

    本文链接:https://www.haomeiwen.com/subject/dqzpyltx.html