mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-19 07:45:05 -05:00
8 lines
250 B
Bash
Executable File
8 lines
250 B
Bash
Executable File
#!/bin/sh
|
|
|
|
LOGO='artwork_4096x4096.png'
|
|
|
|
for SIZE in 358x173 358x358 1000x800 414x180 414x468 558x558 558x756 846x468 2400x1200; do
|
|
convert -verbose $LOGO -resize $SIZE -gravity center -background transparent -extent $SIZE "artwork_$SIZE.png"
|
|
done
|