Python實(shí)現(xiàn)圖片指定位置加圖片水印(附Pyinstaller打包exe)
(一)功能實(shí)現(xiàn)效果:
選擇文件的效果:


標(biāo)記預(yù)加水印的位置:


(二)Python代碼:
# -*l- coding:utf-8 *
import os, io, sys, re, time, json
from pandas import array
import matplotlib.backends.backend_tkagg
import matplotlib
matplotlib.use('TkAgg')
import matplotlib.pyplot as plt
#from matplotlib.pyplot import imshow, ginput
from PIL import Image, ImageEnhance, ImageFilter
import wx
import numpy as np
import random
class DirDialog(wx.Frame):
def __init__(self):
"""Constructor"""
wx.Frame.__init__(self, None, -1, u"文件夾選擇對(duì)話框")
b = wx.Button(self, -1, u"請(qǐng)選擇圖片")
self.Bind(wx.EVT_BUTTON, self.OnButton, b)
def OnButton(self, event):
# file_wildcard = "Paint files(*.paint)|*.paint|All files(*.*)|*.*"
dlg = wx.FileDialog(self, u"選擇文件夾", style=wx.DD_DEFAULT_STYLE)
if dlg.ShowModal() == wx.ID_OK:
jpegname = dlg.GetPath() # 文件夾路徑
print(jpegname)
np.savez('dir.npz', k_a=str(jpegname))
dlg.Destroy()
def sealmark(img_seal, img_new):
try:
data_a = np.load('dir.npz')#保存地址數(shù)據(jù)
img_source = str(data_a['k_a']) # 原圖片的地址
im1 = Image.open(img_source)
plt.imshow(im1)
xy = plt.ginput(1)
xo = xy[0][0]
yo = xy[0][1]
ks = im1.size[1] * 0.000478
wm = Image.open(img_seal)
wm = wm.resize((int(wm.width * ks), int(wm.height * ks))) # wm.with * k=280 * ks
layer = Image.new('RGBA', im1.size, (0, 0, 0, 0))
layer.paste(wm, (int(xo), int(yo)))
newIm = Image.composite(layer, im1, layer)
newIm.save(img_new)
print(img_seal)
except Exception as e:
print(">>>>>>>>>>> sealMark EXCEPTION: " + str(e))
return False
else:
return True
if __name__ == '__main__':
frame = wx.App()
app = DirDialog()
app.Show()
frame.MainLoop()
sealmark("水印\水印" + str(random.randrange(10)) + ".png", "after_seal.jpg") #random.randrange(10):隨機(jī)在水印庫中挑選一張PNG水印圖片
(三)Python打包成exe程序:
在終端里輸入pyinstaller -F -w add_seal.py
C:\Users\Administrator\Desktop\seal>pyinstaller -F -w add_seal.py
(1)出現(xiàn)以下的打包成功信息:


(2)\dist\文件夾出現(xiàn)exe文件:

(3)把exe文件放在主工作區(qū)文件夾,并雙擊運(yùn)行。


(4)成功!
(5)PS:給EXE文件加圖標(biāo)。
1、找一個(gè)ICO格式的圖標(biāo)文件:“redseal.ico”,放在項(xiàng)目文件夾內(nèi)。

2、加redseal.ico,進(jìn)行打包exe。
pyinstaller -F -w -i redseal.ico add_seal.py
3、移動(dòng)exe的位置,就會(huì)出現(xiàn)圖標(biāo)。

到此這篇關(guān)于Python實(shí)現(xiàn)圖片指定位置加圖片水?。ǜ剑篜yinstaller打包成exe格式)的文章就介紹到這了,更多相關(guān)Python實(shí)現(xiàn)圖片指定位置加圖片水?。ǜ剑篜yinstaller打包成exe格式)內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
python中shapefile庫讀取shapefile文件信息
本文主要介紹了python中shapefile庫讀取shapefile文件信息,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2023-06-06
探討python??pandas.DataFrame.to_json?函數(shù)
這篇文章主要介紹了python??pandas.DataFrame.to_json?函數(shù)示例詳解,to_json?函數(shù)提供了靈活的參數(shù)設(shè)置,使得?pandas?數(shù)據(jù)框能夠以多種格式導(dǎo)出為?JSON?文件,需要的朋友可以參考下2024-07-07
Python利用緩存流實(shí)現(xiàn)壓縮PDF文件
在Python中,有許多庫可以用來壓縮PDF文件,其中最常用的是PyPDF2和PDFMiner,本文將為大家介紹一個(gè)新的方法,即使用緩存流壓縮PDF文件,感興趣的可以了解下2023-08-08
python GUI實(shí)現(xiàn)小球滿屏亂跑效果
這篇文章主要為大家詳細(xì)介紹了python GUI實(shí)現(xiàn)小球滿屏亂跑效果,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2019-05-05

