I'm trying to figure out how to create this kind of watermark, especially the one that's in the center (it's not an ad, it's just a perfect example of what I want to accomplish):
Python's wand library has a Image.watermark method that can simplify common watermark operations.
from wand.image import Image
with Image(filename='background.jpg') as background:
with Image(filename='watermark.png') as watermark:
background.watermark(image=watermark, transparency=0.75)
background.save(filename='result.jpg')
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With