https://github.com/nikolajlauridsen/freemark
Hassle free image watermarking
https://github.com/nikolajlauridsen/freemark
branding image-processing image-watermark python3 watermarking-image
Last synced: 12 months ago
JSON representation
Hassle free image watermarking
- Host: GitHub
- URL: https://github.com/nikolajlauridsen/freemark
- Owner: nikolajlauridsen
- Created: 2017-06-16T14:30:26.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-06-10T06:08:42.000Z (about 2 years ago)
- Last Synced: 2025-04-04T16:29:16.319Z (about 1 year ago)
- Topics: branding, image-processing, image-watermark, python3, watermarking-image
- Language: Python
- Homepage:
- Size: 132 KB
- Stars: 8
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FreeMark
Easy way to watermark multiple images, made to be super easy and hassle free.
## How to
Simply do the three necessary steps:
1. Choose images to be watermarked (Bulk load from a folder or pick out individual files from a folder)
2. Choose image to be applied as watermark (png or jpg)
3. Choose the destination folder
That's it, simply hit start and see your watermarked images pop up in the target folder.
## Customization options
If you like a bit of customization you can change settings such as:
* Opacity of the watermark
* Corner the watermark will be applied in
* Padding, as pixels, percentage, or a combination of the two
* Switch auto-resize on/off
* Apply a common pre/postfix to all file names
## Installation
Making FreeMark work is fairly straightforward
### Windows
1. Head over to the [Releases page](https://github.com/nikolajlauridsen/FreeMark/releases)
and download the latest zip file
2. Extract the zip file
3. Enter the FreeMark folder and launch FreeMark.exe
### GNU/Linux & Mac
1. Download and install python from [The python web site](https://www.python.org/) (If you're unsure download version 3.6 and chose default install)
2. Clone or download/extract the repository
3. Install requirements with
```
python -m pip install -r requirements.txt
```
(You might have to use python3 or py instead of python depending on your system/install)
#### Trouble with tkinter on linux?
You might have to install tkinter manually by running
```
sudo apt-get install tk
```
or
```
sudo pacman -S tk
```
Depending on your distribution.