diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2021-12-23 18:28:03 +0000 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2021-12-23 18:28:03 +0000 |
commit | 0f08d04698c814955116b6bae50752e64b774d8f (patch) | |
tree | 8cf9a33557093eebfd25aab2872e97639c7e2f62 /.bin/draw-logo | |
download | dots-0f08d04698c814955116b6bae50752e64b774d8f.tar.gz |
Thu Dec 23 06:28:03 PM UTC 2021
Diffstat (limited to '.bin/draw-logo')
-rwxr-xr-x | .bin/draw-logo | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.bin/draw-logo b/.bin/draw-logo new file mode 100755 index 0000000..d65bf8f --- /dev/null +++ b/.bin/draw-logo @@ -0,0 +1,23 @@ +#!/bin/sh + +set -xe + +circle_coordinates="256,256,256" +background_color="white" +foreground_color="black" + +convert -size 512x512 \ + "xc:${backgrond_color}" \ + -fill "${foreground_color}" \ + -draw "circle ${circle_coordinates},32" \ + -fill "${background_color}" \ + -draw "circle ${circle_coordinates},96" \ + "${1}.png" + +convert "${1}.png" -resize "50%" "${1}-medium.png" +convert "${1}.png" -resize "25%" "${1}-small.png" + +convert "${1}-small.png" \ + -level -10%,12% \ + -ordered-dither o8x8 \ + "${1}-dithered.png" |