1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-28 18:17:11 -07:00
rc/sh/tpad

16 lines
367 B
Bash
Executable File

#!/usr/bin/env sh
# YES_ZSH
# YES_BASH
# YES_DASH
# YES_ASH
tpad() { ### @-
### add a 1px transparent border around an image to prevent twitter from mangling it into a jpg.
### sadly, this trick doesn't work anymore.
for f; do
gm convert -bordercolor "#000000FF" -border 1x1 "$f" "${f%.png}.tt.png"
done
}
[ -n "${preload+-}" ] || tpad "$@"