复制代码<div ref="imageWrapper">
<p>要截屏的内容</p>
</div>
复制代码
justDoIt() {
var that = this;
if (navigator.userAgent.indexOf("Html5Plus") >= 0) {
that.saveCodeBtnHide(1);
console.log("点击保存图片");
that.$nextTick(() => {
that.toImage();
});
}
},
toImage() {
var that = this;
setTimeout(() => {
html2canvas(this.$refs.imageWrapper, {
backgroundColor: null,
useCORS: true,
allowTaint: true,
taintTest: true
}).then(canvas => {
let dataURL = canvas.toDataURL("image/png");
console.log("网页截图");
that.savePicture(dataURL);
});
}, 300);
},
savePicture(imgurl) {
var that = this;
var b = new plus.nativeObj.Bitmap("bitblmap");
console.log("☆☆☆☆☆☆ 保存图片到相册中");
console.log(b);
b.loadBase64Data(
imgurl,
function() {
console.log("图片创建成功");
var fileName = "_doc/img1.png";
b.save(
fileName,
{ overwrite: true },
object => {
plus.gallery.save(
fileName,
() => {
console.log("保存图片到相册成功");
},
() => {
console.log("保存图片到相册失败");
}
);
},
() => {
console.log("保存失败");
}
);
},
function() {
console.log("图片创建失败");
}
);
}
4 个评论
要回复文章请先登录或注册
传播星球
百倍
名图客
4***@qq.com