时间:2021-05-22
图片上画线条
import sysfrom PIL import Image,ImageDrawim = Image.open("th.png")draw = ImageDraw.Draw(im) #实例化一个对象draw.line((0, 0) + im.size, fill=128, width=5) #线的起点和终点,线宽draw.line((0, im.size[1], im.size[0], 0), fill=128)draw.line((0,im.size[1]/2)+(im.size[0]/2,im.size[1]), fill=128, width=5)im.show()图片上写字
from PIL import Image, ImageDraw, ImageFont# get an imagebase = Image.open('th.jpg').convert('RGBA')# make a blank image for the text, initialized to transparent text colortxt = Image.new('RGBA', base.size, (255,255,255,0))# get a font 需要在C:\Windows\Fonts拷贝一份字体文件 当前脚本路径下fnt = ImageFont.truetype('cambriai.ttf', 40)# get a drawing contextd = ImageDraw.Draw(txt)# draw text, half opacityd.text((10,10), "Hello", font=fnt, fill=(255,255,255,128))# draw text, full opacityd.text((10,60), "World", font=fnt, fill=(255,255,255,255))fillcolor = "#ff0000" #字体颜色d.text((base.size[0]-20,10), "4", font=fnt, fill=fillcolor)out = Image.alpha_composite(base, txt)out.show()参考官方文档 https://pillow.readthedocs.io/en/stable/reference/Image.html
补充知识:python对图像中的人脸进行画框(人脸的位置数据记录在记事本文件中)
我就废话不多说了,大家还是直接看代码吧!
import numpy as pyimport osimport cv2 as cvwith open('labelFaceData.txt','r')as fp:#打开记录了数据的记事本文件 pictureNumber = 0#用来记录照片的数量 while 1: count = 1 line = fp.readline()#读取文件中每一行的数据 if not line:#如果读取失败则退出 break pictureNumber+=1#图片数加1 str1 = line.split()#用一个数组以字符串的形式储存文件中的数据 img = cv.inread(str[0])#str[0]中存放的是要读取的图片地址,用cv.inread读取它 faceNumber = (len(str1)-1)/16#用来记录人脸的总数 for i in reage(faceNumber):#用for循环对人脸进行画框 x = int(str1[count+1])#x,y,w,h为画框需要的点 y = int(str1[count+2]) w = int(str1[count+3]) h = int(str1[count+4]) cv.rectangle(img,(x,y),(x+w,y+h),(255,0,0),3,4,0)#用rectangle对图像进行画框 count+=16 #cv.namedWindow(str[0],0) #cv.imshow(str[0],img); #cv.waitKey(0) cv.imwrite("./result/image1_"+str(pictureNumber)+".jpg",img)#保存图片fp.close()以上这篇python 实现PIL模块在图片画线写字就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了python实现通过pil模块对图片格式进行转换的方法。分享给大家供大家参考。具体分析如下:python的pil模块相当的智能,如果你需要对图片格
本文实例讲述了python通过pil模块将raw图片转换成png图片的方法。分享给大家供大家参考。具体分析如下:python通过pil模块将raw图片转换成pn
本文实例讲述了python通过pil模块获得图片exif信息的方法。分享给大家供大家参考。具体分析如下:python的pil模块功能超级强大,不但可以用来处理图
1、PIL介绍以及图片分割Python3安装:pip3installPillow1.1image模块Image模块是在PythonPIL图像处理中常见的模块,主
Python生成随机验证码,需要使用PIL模块,具体内容如下安装:pip3installpillow基本使用1.创建图片fromPILimportImageim