mirror of
https://gitlab.com/gnuwget/wget2.git
synced 2025-07-24 10:01:36 +00:00

* docs/gen-logo.sh: Add script to generate logo via imagemagick * docs/wget-logo.png: Add generated logo * docs/libwget.doxy.in: Include logo into docs
7 lines
296 B
Bash
Executable File
7 lines
296 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This little script generates the current Wget logo for the HTML docs.
|
|
# Needs ImageMagick
|
|
|
|
convert -size 256x88 xc:transparent -font Palatino-Bold -pointsize 72 -draw "text 25,60 'Wget2'" -channel RGBA -gaussian 0x6 -fill black -stroke green -draw "text 20,55 'Wget2'" wget-logo.png
|