MUI上传头像

//上传头像练习 -- trueimg 为图片id
document.getElementById("trueimg").addEventListener('tap',function(){
if(mui.os.plus){
var a=[{
title:"拍照"
},{
title:"从手机相册选择"
}];
plus.nativeUI.actionSheet({
title:"修改用户头像",
cancel:"取消",
buttons:a
},function(b){
switch(b.index){
case 0:
break;
case 1:
//alert("拍照");
getImage();//拍照
break;
case 2:
//alert("打开相册");
galleryImg();//打开相册
break;
default:
break;
}
});
}
},false);
//拍照
function getImage(){
var c = plus.camera.getCamera();
c.captureImage(function(e){
plus.io.resolveLocalFileSystemURL(e,function(entry){
var s = entry.toLocalURL() + "?version=" + new Date().getTime();
uploadHead(s);//上传图片
},function(e){
console.log("读取拍照文件错误:"+e.message);
});
},function(s){
console.log("error"+s);
},{
filename:"_doc/bg.png"
})
}
//从相册选图上传
function galleryImg(){
plus.gallery.pick(function(a){
plus.io.resolveLocalFileSystemURL(a,function(entry){
plus.io.resolveLocalFileSystemURL("_doc/",function(root){
root.getFile("bg.png",{},function(file){
//文件已存在
file.remove(function(){
console.log("file remove success");
entry.copyTo(root,'bg.png',function(e){
var e=e.fullPath+"?version="+new Date().getTime();
uploadHead(e);//上传图片
},
function(e){
console.log('copy image file:'+e.message);
});
},function(){
console.log('delete image file:'+e.message);
});
},function(){
//文件不存在
entry.copyTo(root,'bg.png',function(e){
var path = e.fullPath +"?version="+new Date().getTime();
uploadHead(path);
},function(e){
console.log('copy image fail:'+e.message);
});
});
},function(e){
console.log("get _www folder fail");
})
},function(e){
console.log("读取拍照文件错误:"+e.message);
});
},function(a) {},{
filter:"image"
})
};
//上传头像图片
function uploadHead(imgPath){
console.log("imgPath ="+imgPath);
var mainImage = document.getElementById("trueimg");
mainImage.src = imgPath;
mainImage.style.width = "64px";
mainImage.style.height = "64px";
var image = new Image();
image.src = imgPath;
image.onload = function(){
var imgData = getBase64Image(image);
}
}
//将图片压缩成base64
function getBase64Image(img){
var canvas = document.createElement("canvas");
var width = img.width;
var height = img.height;
if(width>height){
if(width>100){
height = Math.round(height *= 100/width);
width = 100;
}
}else{
if(height>100){
width = Math.round(width *= 100/height);
height = 100;
}
}
canvas.width = width;
canvas.height = height;
var ctx = canvas.getContext("2d");
ctx.drawImage(img,0,0,width,height);
var dataURL = canvas.toDataURL("image/png",0.8);
return dataURL.replace("data:image/png;base64,","");
}

参考网址:http://www.bcty365.com/content-146-3648-1.html


  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值