vue页面使用html2canvas生成图片并添加多处水印
时间: 2023-08-14 10:05:38 浏览: 302
好的,针对你的问题,我可以给你提供一些思路和参考方法:
1. 在 Vue 页面中引入 html2canvas 库,并使用其中的 toDataURL 方法将页面截图生成 Base64 图片数据。
2. 使用 Canvas 在图片上添加水印。
3. 可以添加多个水印,需要调整水印的位置和大小。
4. 最后将添加水印后的图片保存或上传到服务器。
下面是一个简单的示例代码,仅供参考:
```
<template>
<div>
<button @click="generateImage">生成图片</button>
</div>
</template>
<script>
import html2canvas from 'html2canvas';
export default {
methods: {
async generateImage() {
const canvas = await html2canvas(document.querySelector('#target'), {
useCORS: true,
});
const ctx = canvas.getContext('2d');
const img = new Image();
img.src = canvas.toDataURL();
// 添加水印
img.onload = () => {
// 添加第一个水印
ctx.font = 'bold 20px Arial';
ctx.fillStyle = 'rgba(255, 255, 255, 0.6)';
ctx.fillText('watermark1', 50, 50);
// 添加第二个水印
ctx.font = 'bold 30px Arial';
ctx.fillStyle = 'rgba(255, 255, 255, 0.6)';
ctx.fillText('watermark2', 200, 200);
// 将添加水印后的图片保存到本地
const link = document.createElement('a');
link.download = 'image.png';
link.href = canvas.toDataURL();
link.click();
};
},
},
};
</script>
```
这里添加的两个水印只是示例,你可以根据需要添加更多的水印,并调整水印的位置和大小。同时,你需要注意浏览器的跨域问题,如果出现跨域问题,可以使用 `useCORS` 参数解决。
阅读全文