python影像處理(2)映像浮水印和PIL模式轉化

來源:互聯網
上載者:User

標籤:art   運行   分享圖片   映像   .text   imp   inf   透明度   net   

模式轉化:

PIL模式轉化:將圖片轉化成其他模式

 1 # 我們將image映像轉化為灰階映像(python) 2 from PIL import Image 3 img = Image.open(‘c:\\1.JPG‘) 4 img.show()    # 映像的開啟展示 5 # L = I.convert(‘L‘) 6 # PIL的九種不同模式:1,L,P,RGB,RGBA,CMYK,YCbCr,I,F  7 # 模式轉化語句  8 L = img.convert(‘I‘) 9 w,h = img.size        # 圖尺寸10 mode = img.mode         # 圖片的模式11 geshi = img.format     # 圖片的格式                12 print(w,h,mode,geshi)13 L.show()

浮水印:

from PIL import Image, ImageDraw, ImageFont# 添加文字浮水印# RGBA的意思是(Red-Green-Blue-Alpha)它是在RGB上擴充包括了“alpha”通道,運行對顏色值設定透明度im = Image.open("C:/1.jpg").convert(‘RGBA‘)  txt=Image.new(‘RGBA‘, im.size, (0,0,0,0))    # 映像的大小fnt=ImageFont.truetype("c:/Windows/fonts/Candara.ttf", 50)        # 選浮水印的字型d=ImageDraw.Draw(txt)d.text((txt.size[0]-120,txt.size[1]-50), "Hello",font=fnt,fill=(255,0,0,255))out=Image.alpha_composite(im,txt)out.show()out.save(r"c:/pp.png")

# 添加圖片浮水印im = Image.open("C:/2.jpg")mark=Image.open("C:/1.jpg")print(im.size)# RGBA表示四個屬性A表示透明度 關於new(‘模式’,大小尺寸,顏色)layer=Image.new(‘RGBA‘, im.size, (0,0,0,0))layer.paste(mark, (im.size[0]-400,im.size[1]-200))    # 改變浮水印圖片的位置# composite:使用兩幅給出的圖片和一個與alpha參數相似用法的mask參數其值可為:"1","L","RGBA"。兩幅圖片的size必須相同。out=Image.composite(layer,im,layer)out.show()

#參考 50747084

python影像處理(2)映像浮水印和PIL模式轉化

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.