vant上传图片 转二进制_土旦:移动端 Vue+Vant 的Uploader 实现 :上传、压缩、旋转图片...

面向百度开发

html

js

data() {

return {

files: {

name: "",

type: ""

},

headerImage: null,

picValue: null,

upImgUrl,

}

},

// 组件方法 获取 流

async onRead(file) {

// console.log(file);

// console.log(file.file);

this.files.name = file.file.name; // 获取文件名

this.files.type = file.file.type; // 获取类型

this.picValue = file.file; // 文件流

this.imgPreview(this.picValue);

},

// 处理图片

imgPreview(file) {

let self = this;

let Orientation;

//去获取拍照时的信息,解决拍出来的照片旋转问题

Exif.getData(file, function () {

Orientation = Exif.getTag(this, "Orientation");

});

// 看支持不支持FileReader

if (!file || !window.FileReader) return;

if (/^image/.test(file.type)) {

// 创建一个reader

let reader = new FileReader();

// 将图片2将转成 base64 格式

reader.readAsDataURL(file);

// 读取成功后的回调

reader.onloadend = function () {

// console.log(this.result);

let result = this.result;

let img = new Image();

img.src = result;

//判断图片是否大于500K,是就直接上传,反之压缩图片

if (this.result.length <= * ) {

self.headerImage = this.result;

self.postImg();

} else {

img.onload = function () {

let data = self.compress(img, Orientation);

self.headerImage = data;

self.postImg();

};

}

};

}

},

// 压缩图片

compress(img, Orientation) {

let canvas = document.createElement("canvas");

let ctx = canvas.getContext("2d");

//瓦片canvas

let tCanvas = document.createElement("canvas");

let tctx = tCanvas.getContext("2d");

// let initSize = img.src.length;

let width = img.width;

let height = img.height;

//如果图片大于四百万像素,计算压缩比并将大小压至400万以下

let ratio;

if ((ratio = (width * height) / ) > ) {

// console.log("大于400万像素");

ratio = Math.sqrt(ratio);

width /= ratio;

height /= ratio;

} else {

ratio = ;

}

canvas.width = width;

canvas.height = height;

// 铺底色

ctx.fillStyle = "#fff";

ctx.fillRect(, , canvas.width, canvas.height);

//如果图片像素大于100万则使用瓦片绘制

let count;

if ((count = (width * height) / ) > ) {

// console.log("超过100W像素");

count = ~~(Math.sqrt(count) + ); //计算要分成多少块瓦片

// 计算每块瓦片的宽和高

let nw = ~~(width / count);

let nh = ~~(height / count);

tCanvas.width = nw;

tCanvas.height = nh;

for (let i = ; i < count; i++) {

for (let j = ; j < count; j++) {

tctx.drawImage(img, i * nw * ratio, j * nh * ratio, nw * ratio, nh * ratio, , , nw, nh);

ctx.drawImage(tCanvas, i * nw, j * nh, nw, nh);

}

}

} else {

ctx.drawImage(img, , , width, height);

}

//修复ios上传图片的时候 被旋转的问题

if (Orientation != "" && Orientation != ) {

switch (Orientation) {

case : //需要顺时针(向左)90度旋转

this.rotateImg(img, "left", canvas);

break;

case : //需要逆时针(向右)90度旋转

this.rotateImg(img, "right", canvas);

break;

case : //需要180度旋转

this.rotateImg(img, "right", canvas); //转两次

this.rotateImg(img, "right", canvas);

break;

}

}

//进行最小压缩

let ndata = canvas.toDataURL("image/jpeg", 0.1);

tCanvas.width = tCanvas.height = canvas.width = canvas.height = ;

return ndata;

},

// 旋转图片

rotateImg(img, direction, canvas) {

//最小与最大旋转方向,图片旋转4次后回到原方向

const min_step = ;

const max_step = ;

if (img == null) return;

//img的高度和宽度不能在img元素隐藏后获取,否则会出错

let height = img.height;

let width = img.width;

let step = ;

if (step == null) {

step = min_step;

}

if (direction == "right") {

step++;

//旋转到原位置,即超过最大值

step > max_step && (step = min_step);

} else {

step--;

step < min_step && (step = max_step);

}

//旋转角度以弧度值为参数

let degree = (step * * Math.PI) / ;

let ctx = canvas.getContext("2d");

switch (step) {

case :

canvas.width = width;

canvas.height = height;

ctx.drawImage(img, , );

break;

case :

canvas.width = height;

canvas.height = width;

ctx.rotate(degree);

ctx.drawImage(img, , -height);

break;

case :

canvas.width = width;

canvas.height = height;

ctx.rotate(degree);

ctx.drawImage(img, -width, -height);

break;

case :

canvas.width = height;

canvas.height = width;

ctx.rotate(degree);

ctx.drawImage(img, -width, );

break;

}

},

//将base64转换为文件

dataURLtoFile(dataurl) {

var arr = dataurl.split(","),

bstr = atob(arr[]),

n = bstr.length,

u8arr = new Uint8Array(n);

while (n--) {

u8arr[n] = bstr.charCodeAt(n);

}

return new File([u8arr], this.files.name, {

type: this.files.type

});

},

//这里写接口

async postImg() {

let file = this.dataURLtoFile(this.headerImage);

let formData = new window.FormData();

formData.append("file", file);

toast_loding(this, "图片上传中···");

try {

let res = await util.ajax.post(this.upImgUrl, formData, {

headers: {

"Content-Type": "multipart/form-data"

}

});

} catch (e) {

console.log(e);

}

}

记录走过的路,踩过的坑,互勉。

前端交流群:87709616

有不同意见的可以留言,我们一起讨论。

Web Uploader文件上传插件

http://www.jq22.com/jquery-info2665   插件描述:WebUploader是由Baidu WebFE(FEX)团队开发的一个简单的以HTML5为主,FLASH为辅的现 ...

Web Uploader文件上传&;&;使用webupload有感(黄色部分)

引入资源 使用Web Uploader文件上传需要引入三种资源:JS, CSS, SWF.

解决Web Uploader上传文件和图片 延迟和not defined

1.出现list not define时,var $list = $("#fileList"); 2.选择文件框有延迟,可能是因为选择文件类型过多 mimeTypes: 'imag ...

PHP服务端如何通过程序将图上传到指定的图片服务器与图片服务器的优化方案

一:PHP服务端如何通过程序将图上传到指定的图片服务器与图片服务器的优化方案 (1) php服务器把图片处理成缩率图或指定大小的图片在通过PHP程序代码 操作FTP 上传到图片服务器. 二:图片服务器 ...

mui plus.uploader.createUpload 上传文件服务端获取文件名中文乱码问题

客户端上传文件需要做一次url编码:encodeURIComponent(fileName) 服务端:URL解码 var fileName = HttpUtility.UrlDecode(hfc.Fi ...

Fine Uploader文件上传组件

最近在处理后台数据时需要实现文件上传.考虑到对浏览器适配上采用Fine Uploader. Fine Uploader 采用ajax方式实现对文件上传.同时在浏览器中直接支持文件拖拽[对浏览器版本有要 ...

HTML5文件上传器,纯脚本无插件的客户端文件上传器---Uploader 文件上传器类

概述 客户端完全基于JavaScript的 浏览器文件上传器,不需要任何浏览器插件,但需要和jQuery框架协同工作,支持超大文件上传,其算法是将一个超大文件切片成N个数据块依次提交给服务 端处理,由 ...

Wince 6.0适用 .NET 使用HttpRequest的Post上传文件,服务端的Web API接收Post上传上来的文件 代码

//调用的示例 private string fileName = "InStorageData.csv"; string filePath = parentPath + Comm ...

vue中使用axios post上传头像/图片并实时显示到页面

在前端开发中,为了更好的用户体验,在头像上传时会先将图片显示到页面然后点击保存按钮 完成图片的上传成功 代码部分有参考他人的写法. html代码:  

TinyFrame升级之五:全局缓存的设计及实现

在任何框架中,缓存都是不可或缺的一部分,本框架亦然.在这个框架中,我们的缓存分为两部分:内存缓存和单次请求缓存.简单说来,就是一个使用微软提供的MemoryCache做扩展,并提供全局唯一实例:另一个 ...

linux初始化配置---主机名、关闭防火墙、关闭selinux

一.修改主机名 1.零时修改 [root@localhost network-scripts]# hostname jw07 然后就可以看到我们的主机名被修改了

java 中遇到的问题及解决方法

1.经常发现明明导入jar包,还是会报java.lang.NoSuchMethodError和java.lang.NoClassDefFoundError 试试网上的各种方法,包括重新导入jar包.重 ...

OOP三个基本特征:封装、继承、多态

面向对象的三个基本特征是:封装.继承.多态. 封装 封装最好理解了.封装是面向对象的特征之一,是对象和类概念的主要特性. 封装,也就是把客观事物封装成抽象的类,并且类可以把自己的数据和方法只让可信的类 ...

Eclipse安装配置PyDev插件

Eclipse安装配置PyDev插件 关于PyDev PyDev是一个功能强大的 Eclipse插件,使用户可用 Eclipse 来进行 Python 应用程序的开发和调试.PyDev 插件的出现方便 ...

How to tune SharePoint 2010 Server for better performance?

http://social.technet.microsoft.com/wiki/contents/articles/7926.sharepoint-2010-tips-for-dealing-wit ...

OpenGL ES 2.0 向量

访问向量中的某个分量. 将一个向量看作位置时,可以使用x.y.z.w4个分量名,其分别代表X轴.Y轴.Z轴.向量的模. 将一个向量看作颜色时,可以使用r.g ...

解读 Vue 之 Reactive

本文同步发表在 https://github.com/whxaxes/blog/issues/7 前言 在一篇文章中简单讲了 vue 是如何把模板解析成 render function 的,这一篇文章 ...

你可能感兴趣的:(vant上传图片,转二进制)