您好,登錄后才能下訂單哦!
本篇文章為大家展示了Pillow模塊怎么在python中使用,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
0、使用pip安裝
$ pip install pillow
1、使用easy_install
$ easy_install pillow
2、通過pycharm安裝
1、學習并使用pillow庫
#導入模塊 from PIL import Image #讀取文件 img = Image.open('test.jpg') #保存文件 #img.save(filename,format) img.save(filename,"JPEG") #獲取圖片大小 (width,height) = img.size #獲取圖片的源格式 img_format = img.format #獲取圖片模式,有三種模式:L(灰度圖像),RGB(真彩色)和CMYK(pre-press圖像) img_mode = img.mode #圖片模式的轉換 img = img.convert("L") #轉化成灰度圖像 #獲取每個坐標的像素點的RGB值 r,g,b = img.getpixel((j,i)) #重設圖片大小 img = img.resize(width,height) #創建縮略圖 img.thumbnail(size)
2、實戰演練
其實應該很容易想到,如果要達到這種效果,應該能想得到就是獲取圖上每一點的RGB值,然后根據這三種值確定這一點采用什么字符,其實根據RGB來確定的交灰值,所以可以將圖片轉化成灰度圖片,來直接獲取每一點的灰度,或者通過灰度的轉換公式來使得RGB三值轉化成灰度
#coding:utf-8 from PIL import Image #要索引的字符列表 ascii_char = list("$@B%8&WM#*oahkbdpqwmZO0QLCJUYXzcvunxrjft/\|()1{}[]?-_+~<>i!lI;:,\"^`'. ") length = len(ascii_char) img = Image.open('03.jpg') #讀取圖像文件 (width,height) = img.size img = img.resize((int(width*0.9),int(height*0.5))) #對圖像進行一定縮小 print(img.size) def convert(img): img = img.convert("L") # 轉為灰度圖像 txt = "" for i in range(img.size[1]): for j in range(img.size[0]): gray = img.getpixel((j, i)) # 獲取每個坐標像素點的灰度 unit = 256.0 / length txt += ascii_char[int(gray / unit)] #獲取對應坐標的字符值 txt += '\n' return txt def convert1(img): txt = "" for i in range(img.size[1]): for j in range(img.size[0]): r,g,b = img.getpixel((j, i)) #獲取每個坐標像素點的rgb值 gray = int(r * 0.299 + g * 0.587 + b * 0.114) #通過灰度轉換公式獲取灰度 unit = (256.0+1)/length txt += ascii_char[int(gray / unit)] # 獲取對應坐標的字符值 txt += '\n' return txt txt = convert(img) f = open("03_convert.txt","w") f.write(txt) #存儲到文件中 f.close()
給圖片加上文字(福利預警,前方有福利!!!!)
#coding:utf-8 from PIL import Image,ImageDraw,ImageFont #http://font.chinaz.com/zhongwenziti.html 字體下載網站 img = Image.open('PDD01.jpg') draw = ImageDraw.Draw(img) myfont = ImageFont.truetype('HYLiuZiHeiJ.ttf',size=80) fillcolor = 'pink' (width, height) = img.size #第一個參數是加入字體的坐標 #第二個參數是文字內容 #第三個參數是字體格式 #第四個參數是字體顏色 draw.text((40,100),u'萌萌噠',font=myfont,fill=fillcolor) img.save('modfiy_pdd01.jpg','jpeg')
給圖片加上數字
這個大家應該見過的,就是有些頭像的左上角的那個小紅圈加上白色的數字,其實方法和上面那個加文字的差不多
講道理,我還不如用ps,移坐標移到要死要死的
#coding:utf-8 from PIL import Image,ImageDraw,ImageFont img = Image.open("03.jpg") draw = ImageDraw.Draw(img) myfont = ImageFont.truetype(u"時光體.ttf",50) (width,height) = img.size draw.ellipse((width-40,0,width,40),fill="red",outline="red") #在圖上畫一個圓 draw.text((width-30,-8),'1',font=myfont,fill='white') img.save('03_modify.jpg')
生成4位隨機驗證碼
#coding:utf-8 from PIL import Image,ImageDraw,ImageFont,ImageFilter import random """ 創建四位數的驗證碼 """ #產生隨機驗證碼內容 def rndTxt(): txt = [] txt.append(random.randint(97,123)) #大寫字母 txt.append(random.randint(65,90)) #小寫字母 txt.append(random.randint(48,57)) #數字 return chr(txt[random.randint(0,2)]) #隨機顏色(背景) def rndColor1(): return (random.randint(64, 255), random.randint(64, 255), random.randint(64, 255)) #隨機顏色(字體) def rndColor2(): return (random.randint(32, 127), random.randint(32, 127), random.randint(32, 127)) #240x60: width = 60*4 height = 60 img = Image.new('RGB',(width,height),(255,255,255)) font = ImageFont.truetype(u'時光體.ttf',36) draw = ImageDraw.Draw(img) #填充每個像素 for x in range(width): for y in range(height): draw.point((x,y),fill=rndColor1()) #輸出文字 for txt in range(4): draw.text((60*txt+10,10),rndTxt(),font=font,fill=rndColor2()) #模糊化處理 #img = img.filter(ImageFilter.BLUR) img.save("code.jpg")
上述內容就是Pillow模塊怎么在python中使用,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。