python图片增加半透明文字水印
__author__ = "dengxinyan"
from PIL import Image, ImageDraw, ImageFont
def watermark(img_path,word):
# 打开图片
img1 = Image.open(img_path)
# 图...
__author__ = "dengxinyan"
from PIL import Image, ImageDraw, ImageFont
def watermark(img_path,word):
# 打开图片
img1 = Image.open(img_path)
# 图...
import glob,os,math
from PIL import Image,ImageFont,ImageDraw,ImageEnhance,ImageOps
def gen(im):
mark=Image.new('RGBA',(len('我是水印')*50,r...
python中变量的输出
# 输出函数print的使用
print('hello world')
print('萨瓦迪卡---泰语,你好的意思')
1
2
3
输出结果:
格式化输出
2.1. 为什么要格式化...
import PIL
from PIL import ImageFont,Image,ImageDraw
#设置字体,如果没有,也可以不设置
font = ImageFont.truetype(r"C:\Windows\Fonts\simsun.ttc",70)
#font2 = ImageF...
运行时报错:
Traceback (most recent call last):
File "***.py", line 5, in <module>
from PIL import Image
ModuleNotFoundError: No module named 'PIL'...
1.直接函数调用这是最简单、最直观的方式:def test():print("This is a test")test()2.使用partial()函数在 的内置库中functools,有一个专用于生成偏函数的偏函数partial。de...
python中的集合对象是一组无序排列的可哈希的值。
集合成员可以做字典中的键。
集合支持用in和not in操作符检查成员,由len()内建函数得到集合的大小,
用for循环迭代集合的成...
前面学习了 set 集合,本节来一一学习 set 类型提供的方法。首先,通过 dir(set) 命令可以查看它有哪些方法:>>> dir(set)
['add', 'clear', 'copy', &#...
前言在python列表的元素删除操作中, del, pop(), remove()很容易混淆, 下面对三个语句/方法作出解释del语句del语句可以删除任何位置处的列表元素, 若知道某元素在列表中的...
这三种方法都是list的删除方法,其中remove是针对可变列表的元素进行搜索删除,而pop和del是针对可变列表的下标进行搜索删除。具体区别如下:
1. remove
remove(item)方法是直接...
正则表达式中,group()用来提出分组截获的字符串,()用来分组 1
2
3
4
5
6 import re
a = "123abc456"
print re.search( "([0-9]*)([a-z]*)([0-9]*)" ,a).group( 0 )...
Python中,有三种内建的数据结构,列表、元组和字典,那么它们之间有什么区别呢?我们通过这篇文章来看看吧。什么是Python列表?列表是由一系列按特定顺序排列的元组组成的。在Python...
一.PYTHON环境的搭建1.下载PYTHON(这里以PYTHON3.6为例) step 1:打开下载网址:https://www.python.org/downloads/windows/ step 2:我这里选着python3的版本
step 3:选择python...
全栈指全栈工程师,指掌握多种技能,并利用多种技能完成产品的人。那么Python全栈指什么?我们一起来看看吧。全栈即指全栈工程师,指掌握多种技能,并能利用多种技能独立完成产品的人...
这篇文章主要介绍了python文件运行后被自动退出的解决方法,具有一定借鉴价值,需要的朋友可以参考下。希望大家阅读完这篇文章后大有收获。下面让小编带着大家一起了解一下。通...
程序运行完毕,窗口也跟着关闭。也就是说还没来得及看结果,程序窗口就关闭了。试着改改代码,在最后加上以下这行代码:raw_input("Press <enter>")这样,在运行程序之后,将会出现以...