翼度科技»论坛 编程开发 python 查看内容

python3使用PIL添加中文文本水印背景

9

主题

9

帖子

27

积分

新手上路

Rank: 1

积分
27
环境:Windows10_x64 Python版本 :3.9.2Pillow版本:9.1.1 写的博客文章被转载且不注明出处的情况时有发生,甚至有部分转载者将文章配图添加自己的水印!为了保护作者劳动成果,添加水印是一个可选项。今天记录下Windows10环境下使用python3.9简单实现批量添加中文文本水印背景的过程,并提供示例代码及相关资源下载,可从如下渠道获取:关注微信公众号(聊聊博文,文末可扫码)后回复 20230704 获取。 一、背景描述

python的PIL库可进行图片处理,十分强大,可使用该库实现图片添加水印背景的需求。可通过pip进行安装(默认安装最新版),命令如下:
  1. pip install Pillow
复制代码
pypi地址: https://pypi.org/project/Pillow/
文档地址: https://pillow.readthedocs.io/en/stable/


二、具体实现

这里列举下实现文本水印背景的关键点。1、生成文本背景

可通过ImageDraw.text实现:https://pillow.readthedocs.io/en/stable/reference/ImageDraw.html#PIL.ImageDraw.ImageDraw.text

 
中文文本可通过设置正确的字体实现:
  1. font = ImageFont.truetype("simsun.ttc", fontSize,encoding="utf-8")
复制代码
文本颜色可通过RGB值设置,示例如下:
  1. fill=(106,106,106)
复制代码
2、旋转文本

 可通过rotate函数实现:https://pillow.readthedocs.io/en/stable/reference/Image.html#PIL.Image.Image.rotate

 3、设置水印

可通过Image.paste函数实现:https://pillow.readthedocs.io/en/stable/reference/Image.html#PIL.Image.Image.paste

 4、生成水印背景

1)需要通过循环控制,多次设置背景图片;
  1. i,j = 0,0
  2. while True:
  3.     x,y = i*step,i*step
  4.     if y < height :
  5.         x = 0
  6.     if y > height :
  7.         x = j*step
  8.         j = j + 1
  9.         y = height - 10
  10.     #print(i,"xy :",x,y)
  11.     draw_text(img,(x,y),fill,mask,rotated_mask)
  12.     if (x + step > width ) and (y + step > height ) : break
  13.     i = i + 1
复制代码
2)导出时需要添加质量参数,避免导出的图片失真;
  1. img.save(dstFile,optimize=True, quality=100)
复制代码
5、多进程加速

批量添加文本水印背景时,可使用进程池进行加速。
  1. pool = Pool(processes=8)    # set the processes max number
  2. for root, dirs, files in os.walk(srcDir):
  3.     for name in files:
  4.         srcFile = os.path.join(root, name)
  5.         dstFile = os.path.join(dstDir, name)
  6.         print("%s => %s" % (srcFile,dstFile))
  7.         # add_watermark(srcFile,dstFile,fontSize,myText,angle,fill,step)
  8.         result = pool.apply_async(add_watermark,(srcFile,dstFile,fontSize,myText,angle,fill,step))
  9. pool.close()
  10. pool.join()  
复制代码
完整源码可以从如下途径获取:关注微信公众号(聊聊博文,文末可扫码)后回复 20230704 获取。 三、运行效果

这里演示下python3使用PIL添加中文文本水印背景的运行效果,具体如下:

 运行效果演示视频获取途径:
关注微信公众号(聊聊博文,文末可扫码)后回复 2023070401 获取。 四、资源下载

本文涉及源码和文件,可以从如下途径获取:关注微信公众号(聊聊博文,文末可扫码)后回复 20230704 获取。 


来源:https://www.cnblogs.com/MikeZhang/p/pyWatermaker20230704.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具