export function image2Base64(file, maxW, maxH) {
return new Promise(resolve => {
// 后缀名
const type = file.name.split('.').pop();
// 文件路径
const dataURl = (window.URL || window.webkitURL).createObjectURL(file);
var img = new Image();
img.src = dataURl;
img.onload = function() {
const canvas = document.createElement('canvas');
if (img.width > maxW || img.height > maxH) {
let w = maxW;
let h = maxW * img.height / img.width;
if (h > maxH) {
w = maxH * img.width / img.height;
h = maxH;
}
canvas.width = w;
canvas.height = h;
} else {
canvas.width = img.width;
canvas.height = img.height;
}
const ctx = canvas.getContext('2d');
ctx.drawImage(img, 0, 0, canvas.width, canvas.height);
const dataURL = canvas.toDataURL('image/' + type);
resolve(dataURL);
};
});
}
export function image2Base64_2(file) {
return new Promise(resolve => {
const type = file.name.split('.').pop();
const reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = function(e) {
const url = this.result.substring(this.result.indexOf(',') + 1);
const imgUrl = `data:image/${type};base64,${url}`
resolve(imgUrl);
}
})
}
function change(ev) {
const file = ev.target.files[0];
if (file.size > 2e6) {
alert('图片大小不能超过2M');
return;
}
image2Base64(file, 300, 200).then(base64 => {
console.log(base64);
})
}
JS图片转base64
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 对于前端人员来说,图片处理是一个很常见的需求,由于图片稍微特殊,现在多数做法都是使用调用ajax接口通过http...