watermark.vue
2.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<template>
<div ref="layer" class="watermark-layer"></div>
</template>
<script>
export default {
name: 'WatermarkLayer',
props: {
width: Number,
height: Number,
text: String,
},
mounted() {
if (this.width && this.height && this.text) {
this.init();
}
},
methods: {
init() {
const layerEl = this.$refs.layer;
console.log('layerEl', layerEl);
if (layerEl) {
const canvas = this.createCanvas();
layerEl.style.width = this.width + 'px';
layerEl.style.height = this.height + 'px';
layerEl.appendChild(canvas);
}
},
/**
* image 图片对象,用于截图加水印
* 外部可直接调用,传入image对象,给图片加水印
*/
createCanvas(image) {
const canvas = document.createElement('canvas');
// 若不设置宽、高,无法渲染内容
canvas.width = this.width;
canvas.height = this.height;
// canvas.height = this.height - 40; // 40为底部工具条
canvas.className = 'watermark';
console.log('createCanvas', canvas);
// 获取 Canvas 上下文
const ctx = canvas.getContext('2d');
// 在 Canvas 上绘制原始图片
if (image) {
ctx.drawImage(image, 0, 0);
}
// 绘制水印文本
ctx.font = '24px Arial';
ctx.fillStyle = 'rgba(255, 255, 255, 0.4)';
// 定义水印内容
const watermarkText = this.text;
// 定义水印间隔和边距
// TODO: 未兼容移动端
const watermarkIntervalX = 220; // 水印之间的水平间隔
const watermarkIntervalY = 220; // 水印之间的垂直间隔
const watermarkMarginX = 50; // 水印距离左边的边距
const watermarkMarginY = 180; // 水印距离顶部的边距
// 循环绘制水印
for (let x = watermarkMarginX; x < canvas.width; x += watermarkIntervalX) {
for (let y = watermarkMarginY; y < canvas.height; y += watermarkIntervalY) {
// 保存当前绘图状态以便恢复
ctx.save();
// 将坐标原点移动到水印位置
ctx.translate(x, y);
// 旋转文本
ctx.rotate(-Math.PI / 4); // 旋转-45度(以弧度表示)
// 绘制水印文本
ctx.fillText(watermarkText, 0, 0);
// 恢复绘图状态
ctx.restore();
}
}
return canvas;
},
},
}
</script>
<style lang="scss" scoped>
</style>