https://github.com/ieshaan12/watermark
A python library to watermark your images!
https://github.com/ieshaan12/watermark
hacktoberfest python-3 python-library watermark
Last synced: 5 months ago
JSON representation
A python library to watermark your images!
- Host: GitHub
- URL: https://github.com/ieshaan12/watermark
- Owner: ieshaan12
- License: mit
- Created: 2020-08-23T08:05:49.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-09T17:29:54.000Z (over 5 years ago)
- Last Synced: 2025-03-09T12:34:35.308Z (over 1 year ago)
- Topics: hacktoberfest, python-3, python-library, watermark
- Language: Python
- Homepage: https://pypi.org/project/PyWatermark/
- Size: 937 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## PyWatermark
A python library to watermark your images!
### Installation
`pip install PyWatermark`
### Features
This library exploits the usefulness of pillow to watermark images. It's an easy tool if you want to automate the watermarking of many images at once.
### Usage
```
from PyWatermark import waterMarkImages, getAvailableFonts
imageFile = "image.jpg"
imageOutputPath = "/Desktop" # write your output folder path here
text = "Hello World" # Whatever text you want to watermark
# You can adjust the font here from the given fonts or just
# put in your own font path - a .ttf file
# Other parameters you can adjust are position, size, opacity
outFile = waterMarkImages(imageFile, imageOutputPath, text)
print(getAvailableFonts()) # prints out available fonts
```
### Contributing
Feel free to make suggestions, raise pull requests, and report issues. After all we're human and there can be problems with this library. Optimizing this is very appreciated.