您好,登錄后才能下訂單哦!
本篇文章為大家展示了Python使用Pillow添加圖片水印的方法,代碼簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
如果在某個(gè)網(wǎng)站上發(fā)布了圖片,希望在圖片上會(huì)出現(xiàn)帶標(biāo)識(shí)的水印著怎么辦呢。
這個(gè)是個(gè)比較常見(jiàn)的需求,在Python中應(yīng)該如何處理這一類(lèi)需求呢?
需要先安裝Pillow: pip install pillow
Demo代碼:
import sys from PIL import Image, ImageDraw, ImageFont def watermark_with_text(file_obj, text, color, fontfamily=None): image = Image.open(file_obj).convert('RGBA') draw = ImageDraw.Draw(image) width, height = image.size margin = 10 if fontfamily: font = ImageFont.truetype(fontfamily, int(height / 20)) else: font = None textWidth, textHeight = draw.textsize(text, font) x = (width - textWidth - margin) / 2 # 計(jì)算橫軸位置 y = height - textHeight - margin # 計(jì)算縱軸位置 draw.text((x, y), text, color, font) return image if __name__ == '__main__': org_file = sys.argv[1] with open(org_file, 'rb') as f: image_with_watermark = watermark_with_text(f, 'py.com', 'red') with open('new_image_water.png', 'wb') as f: image_with_watermark.save(f)
使用方法: python watermart.py <圖片地址>
這個(gè)只是把文本嵌入到圖片中的實(shí)現(xiàn),其實(shí)也可以嵌入一個(gè)圖片進(jìn)去的。具體可以參考pillow官方文檔:
https://pillow.readthedocs.io/en/3.1.x/reference/Image.html#PIL.Image.alpha_composite
上述內(nèi)容就是Python使用Pillow添加圖片水印的方法,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。