animation/white.sh

17 lines
329 B
Bash
Raw Normal View History

2021-08-07 16:15:12 +00:00
WIDTH=404
HEIGHT=374
#40.5
#66
#FWIDTH=323
#FHEIGHT=242
#800x800 white in center of image
#convert image.jpg -background white -gravity center -extent 800x800 output.jpg
convert -size ${WIDTH}x${HEIGHT} xc:#FFFFFF white.png
composite -gravity Center white.png "${1}" "${2}"
rm white.png
echo "Centered in white ${1} -> ${2}"