Python使用Pillow添加水印
作者:chenXin@Euler 时间:2021-01-28 08:30:50
本文实例为大家分享了Python使用Pillow添加水印的具体代码,供大家参考,具体内容如下
python数据分析得到的图片,并对照片添加水印pillow
PIL包含在pillow中,所以如果要从PIL导入相关库需要安装pillow
# install
pip install pillow
安装完之后就可以下面的头文件来操作了
from PIL import Image, ImageDraw
采用函数式编程:
#!/usr/bin/python
from PIL import Image, ImageDraw
from matplotlib import pyplot as plt, font_manager
# 保存通过数据分析得到的图片
def save_img():
# mac系统下查询包含中文字体的方式是命令fc-list :lang=zh
my_font = font_manager.FontProperties( fname="/System/Library/Assets/com_apple_MobileAsset_Font5/b2d7b382c0fbaa5777103242eb048983c40fb807.asset/AssetData/Kaiti.ttc")
x = [i for i in range(11, 31)]
y_1 = [1, 0, 1, 1, 2, 4, 3, 2, 3, 4, 4, 5, 6, 5, 4, 3, 3, 1, 1, 1]
y_2 = [0, 0, 0, 1, 2, 4, 3, 2, 3, 4, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1]
# 做出两个图,分别包括的是自己和同桌的每个年龄点交的女朋友数量
plt.plot(x, y_1, label="自己", color="cyan", linestyle="--")
plt.plot(x, y_2, label="同桌", color="r")
_xtick_labels = ["{}岁".format(i) for i in x]
plt.title("每年交的女朋友的数量走势图", fontproperties=my_font)
# 给x轴添加刻度
plt.xticks(x, _xtick_labels, fontproperties=my_font, rotation=45)
# 给y轴添加刻度
plt.yticks(range(min(y_1), max(y_1) + 1))
# 给xy轴添加说明
plt.xlabel("年龄", fontproperties=my_font)
plt.ylabel("数量", fontproperties=my_font)
# 做出网格更加直观看出坐标点值
plt.grid(alpha=0.4, linestyle=":")
# 添加图例
plt.legend(prop=my_font)
plt.savefig("./girl.png")
plt.show()
# 对保存的图片进行添加
def add_watermark(a):
im = Image.open(a)
draw = ImageDraw.Draw(im)
# 这里的hello world是添加的水印
# 数组(50,50)表示的是水印要添加的位置
draw.text((50, 50), 'hello world'.encode('utf-8'), fill=(1, 0, 0))
im.show()
if __name__ == '__main__':
save_img()
add_watermark("girl.png")
代码输出的结果:
注意hello world 就是添加的水印
来源:https://blog.csdn.net/lc574260570/article/details/104208033
标签:python,Pillow,水印
0
投稿
猜你喜欢
使用Python画了一棵圣诞树的实例代码
2022-06-18 23:55:04
PHP5.6读写excel表格文件操作示例
2023-11-21 15:03:21
vue-property-decorator用法详解
2024-05-29 22:49:55
利用python实现简单的循环购物车功能示例代码
2021-05-12 14:52:58
Python自动化测试selenium指定截图文件名方法
2022-01-03 04:51:49
定格动画浅析(一)
2009-07-30 12:50:00
python贪婪匹配以及多行匹配的实例讲解
2021-12-27 20:01:04
mysql 5.7 docker 主从复制架构搭建教程
2024-01-21 22:46:03
Python代码部署的三种加密方案
2022-03-22 02:24:40
SQLServer中临时表与表变量的区别分析
2024-01-22 22:44:18
Python 提速器numba
2021-04-27 21:14:06
python tkinter实现屏保程序
2023-02-20 14:31:20
Python字符串类型及格式化问题
2023-12-30 21:49:46
使用AJAX的一个简单的例子
2007-09-21 17:55:00
switchery按钮的使用方法
2024-04-29 13:40:44
最简便的备份MySQL数据库的方法
2008-12-25 13:16:00
推荐4个原生javascript常用的函数
2024-02-23 09:05:41
asp如何在聊天室实现趣味答题并计分功能?
2010-06-18 20:00:00
python,pycharm的环境变量设置方式
2023-08-04 10:44:41
asp如何实现页面执行时间及搜索时间
2007-11-12 22:48:00