Coder Social home page Coder Social logo

watermarker's Introduction

marker.py

为图片添加文字水印 可设置文字大小、颜色、旋转、间隔、透明度

usage

需要 PIL 库 pip install Pillow

usage: marker.py [-h] [-f FILE] [-m MARK] [-o OUT] [-c COLOR] [-s SPACE] [-a ANGLE] [--font-family FONT_FAMILY] [--font-height-crop FONT_HEIGHT_CROP] [--size SIZE]
                 [--opacity OPACITY] [--quality QUALITY]

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 ANGLE, --angle ANGLE
                        rotate angle of watermarks, default is 30
  --font-family FONT_FAMILY
                        font family of text, default is './font/青鸟华光简琥珀.ttf'
                        using font in system just by font file name
                        for example 'PingFang.ttc', which is default installed on macOS
  --font-height-crop FONT_HEIGHT_CROP
                        change watermark font height crop
                        float will be parsed to factor; int will be parsed to value
                        default is '1.2', meaning 1.2 times font size
                        this useful with CJK font, because line height may be higher than size
  --size SIZE           font size of text, default is 50
  --opacity OPACITY     opacity of watermarks, default is 0.15
  --quality QUALITY     quality of output images, default is 90

效果

python marker.py -f ./input/test.png -m 添加水印

watermarker's People

Contributors

2dou avatar lihsai0 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

watermarker's Issues

UnicodeDecodeError: 'utf8' codec can't decode byte

λ python marker.py -f a.jpg -m "中aaa"
Traceback (most recent call last):
  File "marker.py", line 160, in <module>
    main()
  File "marker.py", line 146, in main
    args.mark = args.mark.decode("utf-8")
  File "C:\Python27\lib\encodings\utf_8.py", line 16, in decode
    return codecs.utf_8_decode(input, errors, True)
UnicodeDecodeError: 'utf8' codec can't decode byte 0xa4 in position 1: invalid start byte

IOError: [Errno 22] invalid mode ('rb') or filename: 'C:\\Users\\xxx\\Downloads\\New folder (5)\\watermarker\\font\\\xe9\x9d\x92\xe9\xb8\x9f\xe5\x8d\x8e\xe5\x85\x89\xe7\xae\x80\xe7\x90\xa5\xe7\x8f\x80.ttf'

error:

IOError: [Errno 22] invalid mode ('rb') or filename: '....ttf'

detail:

λ python marker.py -f a.jpg -m "aaa"
Traceback (most recent call last):
  File "marker.py", line 160, in <module>
    main()
  File "marker.py", line 148, in main
    mark = gen_mark(args)
  File "marker.py", line 77, in gen_mark
    size=args.size))
  File "C:\Python27\lib\site-packages\PIL\ImageFont.py", line 640, in truetype
    return freetype(font)
  File "C:\Python27\lib\site-packages\PIL\ImageFont.py", line 637, in freetype
    return FreeTypeFont(font, size, index, encoding, layout_engine)
  File "C:\Python27\lib\site-packages\PIL\ImageFont.py", line 182, in __init__
    with open(font, "rb") as f:
IOError: [Errno 22] invalid mode ('rb') or filename: 'C:\\Users\\xxx\\Downloads\\New folder (5)\\watermarker\\font\\\xe9\x9d\x92\xe9\xb8\x9f\xe5\x8d\x8e\xe5\x85\x89\xe7\xae\x80\xe7\x90\xa5\xe7\x8f\x80.ttf'

solve:
change this:

TTF_FONT = os.path.join("font", "青鸟华光简琥珀.ttf")

to

TTF_FONT = os.path.join("font", "cn.ttf")

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.