Python PIL模塊筆記
阿新 • • 發佈:2018-08-25
color ges size easy 不能 之前 .get 文字 jar
利用python pil 實現給圖片上添加文字
圖片中添加文字
#-*- coding: utf-8 -*- from PIL import Image,ImageDraw,ImageFont ttfont = ImageFont.truetype("D:\Python目錄\msyh.ttc",20) #//這裏我之前使用Arial.ttf時不能打出中文,用華文細黑就可以 im = Image.open("D:\客戶程序\\1.jpg") draw = ImageDraw.Draw(im) draw.text((10,10),u‘韓寒‘, fill=(0,0,0),font=ttfont) draw.text((40,40),u‘楊利偉‘, fill=(0,0,0),font=ttfont) im.show()
獲得文字尺寸
text=u‘楊利偉‘ Font = ImageFont.truetype("D:\Python目錄\msyh.ttc",20) Font.getsize(text) >>>(60, 25)
Python用Pillow(PIL)進行簡單的圖像操作
用Python來合並圖片(SoEasy)
python PIL合並半透明的png圖片
轉換通道
https://blog.csdn.net/icamera0/article/details/50843172
Python PIL模塊筆記