添加文字水印的方法有多种,以下提供几种常见的方式:
1. 使用命令行程序
你可以编写一个简单的命令行程序来给图片添加文字水印。以下是一个使用Python和PIL库的示例代码:
```python
import os
from PIL import Image, ImageDraw, ImageFont
def get_position(image_width, image_height, text_width, text_height, position_id=9, margin=10):
"""获取文字位置, position_id 1: 左上, 2: 中上, 3: 右上 4: 中左, 5: 正中, 6: 中右 7: 左下, 8: 下中, 9: 右下"""
if position_id == 1:
x = margin
y = margin
elif position_id == 2:
x = (image_width - text_width) / 2 + margin
y = margin
elif position_id == 3:
x = image_width - text_width - margin
y = margin
elif position_id == 4:
x = margin
y = (image_height - text_height) / 2 + margin
elif position_id == 5:
x = (image_width - text_width) / 2 + margin
y = (image_height - text_height) / 2 + margin
elif position_id == 6:
x = image_width - text_width - margin
y = (image_height - text_height) / 2 + margin
elif position_id == 7:
x = margin
y = image_height - text_height - margin
elif position_id == 8:
x = (image_width - text_width) / 2 + margin
y = image_height - text_height - margin
elif position_id == 9:
x = image_width - text_width - margin
y = image_height - text_height - margin
else:
raise ValueError("Invalid position_id")
return x, y
def add_watermark(input_image_path, output_image_path, text):
image = Image.open(input_image_path)
draw = ImageDraw.Draw(image)
font = ImageFont.truetype("arial.ttf", 20)
text_width, text_height = draw.textsize(text, font)
position_id = 9 默认位置为右下角
x, y = get_position(image.width, image.height, text_width, text_height, position_id)
draw.text((x, y), text, font=font, fill=(255, 255, 255, 128)) 透明度为50%
image.save(output_image_path)
示例用法
input_image_path = "path/to/your/image.png"
output_image_path = "path/to/your/watermarked_image.png"
text = input("请输入水印文字: ")
add_watermark(input_image_path, output_image_path, text)
```
2. 使用图像处理软件
许多图像处理软件如Photoshop、GIMP或在线工具如PicWatermark都提供了水印功能。你可以打开这些工具,选择“添加文字”或“添加水印”选项,输入你想要展示的文字,并调整字体、大小和颜色。然后,将文字水印放置在照片的角落或不显眼的地方,并适当调节透明度,最后保存成品。
3. 使用前端框架
如果你需要在网页上添加文字水印,可以使用前端框架如Vue.js实现。以下是一个简单的Vue.js示例: