社区所有版块导航
Python
python开源   Django   Python   DjangoApp   pycharm  
DATA
docker   Elasticsearch  
aigc
aigc   chatgpt  
WEB开发
linux   MongoDB   Redis   DATABASE   NGINX   其他Web框架   web工具   zookeeper   tornado   NoSql   Bootstrap   js   peewee   Git   bottle   IE   MQ   Jquery  
机器学习
机器学习算法  
Python88.com
反馈   公告   社区推广  
产品
短视频  
印度
印度  
私信  •  关注

Souvik Ghosh

Souvik Ghosh 最近创建的主题
Souvik Ghosh 最近回复了
3 年前
回复了 Souvik Ghosh 创建的主题 » 如何在Python中将文本作为水印垂直打印到图像上

试试这个

import cv2


def transparentOverlay(src, overlay, pos=(0, 0), scale=1):
"""
:param src: Input Color Background Image
:param overlay: transparent Image (BGRA)
:param pos:  position where the image to be blit.
:param scale : scale factor of transparent image.
:return: Resultant Image
"""
overlay = cv2.resize(overlay, (0, 0), fx=scale, fy=scale)
h, w, _ = overlay.shape  # Size of foreground
rows, cols, _ = src.shape  # Size of background Image
y, x = pos[0], pos[1]  # Position of foreground/overlay image

# loop over all pixels and apply the blending equation
for i in range(h):
    for j in range(w):
        if x + i >= rows or y + j >= cols:
            continue
        alpha = float(overlay[i][j][3] / 255.0)  # read the alpha channel
        src[x + i][y + j] = alpha * overlay[i][j][:3] + (1 - alpha) * src[x + i][y + j]
return src


def addImageWatermark(LogoImage,MainImage,opacity,pos=(10,100),):
opacity = opacity / 100

OriImg = cv2.imread(MainImage, -1)
waterImg = cv2.imread(LogoImage, -1)

tempImg = OriImg.copy()
print(tempImg.shape)

overlay = transparentOverlay(tempImg, waterImg, pos)
output = OriImg.copy()
# apply the overlay
cv2.addWeighted(overlay, opacity, output, 1 - opacity, 0, output)

cv2.imshow('Life2Coding', output)
cv2.waitKey(0)
cv2.destroyAllWindows()


if __name__ == '__main__':
addImageWatermark('./logo.png','./hanif.jpg',100,(10,100))