mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 01:30:47 -04:00
10 lines
211 B
Bash
10 lines
211 B
Bash
|
|
#!/bin/bash
|
||
|
|
#
|
||
|
|
# Trims the whitespace from around any given images
|
||
|
|
#
|
||
|
|
|
||
|
|
for i in $@; do
|
||
|
|
convert $i -bordercolor white -border 1x1 -trim +repage -alpha off +dither -colors 32 PNG8:next-$i
|
||
|
|
mv next-$i $i
|
||
|
|
done
|