Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hansalemaos/cv2watermark
Puts watermark on images using relative or absolute coordinates.
https://github.com/hansalemaos/cv2watermark
cv2 opencv python watermark
Last synced: 6 days ago
JSON representation
Puts watermark on images using relative or absolute coordinates.
- Host: GitHub
- URL: https://github.com/hansalemaos/cv2watermark
- Owner: hansalemaos
- License: mit
- Created: 2022-12-29T01:17:27.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-29T01:19:24.000Z (almost 2 years ago)
- Last Synced: 2024-10-12T11:08:19.517Z (about 1 month ago)
- Topics: cv2, opencv, python, watermark
- Language: Python
- Homepage: https://pypi.org/project/cv2watermark
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
Awesome Lists containing this project
README
# Puts watermark on images using relative or absolute coordinates.
```python
$pip install cv2watermark
from cv2watermark import (
merge_image_percentage_height,
merge_image_percentage_width,
merge_image_percentage_height_position,
merge_image_percentage_width_position,
merge_image,
)# Allowed image formats: url/path/buffer/base64/PIL/np
i2 = r"https://www.python.org/static/img/psf-logo.png" # Transparent image from URL doesn't work! You have to download it before
i2 = r"F:\neuedownloads\psf-logo.png"
i1 = r"https://github.com/hansalemaos/screenshots/raw/main/splitted1.png"merg1 = merge_image(
back=i1, front=i2, x=10, y=30, save_path="f:\\cv2mergepics\\merg1.png"
)```
```python
merg2 = merge_image_percentage_width(
back=i1,
front=i2,
x=10,
y=30,
front_percentage_width=80,
save_path="f:\\cv2mergepics\\merg2.png",
)```
```python
merg3 = merge_image_percentage_width_position(
back=i1,
front=i2,
percentx=50,
percenty=60,
front_percentage_width=30,
save_path="f:\\cv2mergepics\\merg3.png",
)```
```python
merg4 = merge_image_percentage_width(
back=i1,
front=i2,
x=110,
y=10,
front_percentage_width=60,
save_path="f:\\cv2mergepics\\merg4.png",
)```
```python
merg5 = merge_image_percentage_width_position(
back=i1,
front=i2,
percentx=50,
percenty=10,
front_percentage_width=40,
save_path="f:\\cv2mergepics\\merg5.png",
)```
```python
merg6 = merge_image_percentage_height(
back=i1,
front=i2,
x=20,
y=50,
front_percentage_height=40,
save_path="f:\\cv2mergepics\\merg6.png",
)```
```python
merg7 = merge_image_percentage_height_position(
back=i1,
front=i2,
percentx=20,
percenty=40,
front_percentage_height=40,
save_path="f:\\cv2mergepics\\merg7.png",
)```