# watermarker **Repository Path**: akke/watermarker ## Basic Information - **Project Name**: watermarker - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-12-04 - **Last Updated**: 2024-12-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # marker.py 为图片添加文字水印 可设置文字**大小、颜色、旋转、间隔、透明度** # usage 需要PIL库 `pip install Pillow` ``` usage: marker.py [-h] [-f FILE] [-m MARK] [-o OUT] [-c COLOR] [-s SPACE] [-a ANGEL] [--size SIZE] [--opacity OPACITY] optional arguments: -h, --help show this help message and exit -f FILE, --file FILE image file path or directory -m MARK, --mark MARK watermark content -o OUT, --out OUT image output directory, default is ./output -c COLOR, --color COLOR text color like '#000000', default is #8B8B1B -s SPACE, --space SPACE space between watermarks, default is 75 -a ANGEL, --angel ANGEL rotate angel of watermarks, default is 30 --size SIZE font size of text, default is 50 --opacity OPACITY opacity of watermarks, default is 0.15 ``` # 效果 `python marker.py -f ./input/test.png -m 添加水印` ![](https://github.com/2Dou/watermarker/raw/master/output/test.png)