mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-05 17:05:04 -05:00
8 lines
217 B
Bash
Executable File
8 lines
217 B
Bash
Executable File
#!/bin/sh
|
|
|
|
LOGO='artwork_4096x4096.png'
|
|
|
|
for SIZE in 71x71 150x150 300x300 1440x2160 2160x2160; do
|
|
convert -verbose $LOGO -resize $SIZE -gravity center -background transparent -extent $SIZE "artwork_$SIZE.png"
|
|
done
|