Spaces:
Running
Running
File size: 1,413 Bytes
3a8ba72 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
import os
import oss2
from PIL import Image
import gradio as gr
import numpy as np
from io import BytesIO
class WatermarkApp:
def __init__(self):
pass
def process_image(self, image):
watermark = Image.open('asset/chaojihui-v2.png')
# 获取水印的等比例缩放尺寸
wm_width, wm_height = watermark.size
target_size = 100
alpha = 0.3
if wm_width > wm_height:
new_wm_width = target_size
new_wm_height = int((wm_height / wm_width) * target_size)
else:
new_wm_height = target_size
new_wm_width = int((wm_width / wm_height) * target_size)
wm = watermark.resize((new_wm_width, new_wm_height), Image.Resampling.LANCZOS)
# 处理透明度
if alpha < 1.0:
wm = self.apply_transparency(wm, alpha)
# 确保原图是RGBA模式
if image.mode != 'RGBA':
image = image.convert('RGBA')
# 在整个图片上铺满水印
for y in range(0, image.height, new_wm_height):
for x in range(0, image.width, new_wm_width):
image.alpha_composite(wm, dest=(x, y))
return image
def apply_transparency(self, watermark, alpha):
"""应用透明度"""
matrix = watermark.split()[-1].point(lambda x: x * alpha)
watermark.putalpha(matrix)
return watermark
|