Skip to content

Instantly share code, notes, and snippets.

@saderuuu
Last active October 17, 2019 20:11
Show Gist options
  • Save saderuuu/c1ce6d8893d32cb0ba41105c5c7e130e to your computer and use it in GitHub Desktop.
Save saderuuu/c1ce6d8893d32cb0ba41105c5c7e130e to your computer and use it in GitHub Desktop.
Redimensionador de imagens
#!/bin/bash
if [ -z "$1" ]
then
echo "Favor definir um arquivo de entrada"
exit
fi
if [ -z "$2" ]
then
echo "Favor definir um arquivo de saída"
exit
fi
if [ -z "$3" ]
then
convert "$1" -gravity center -background white -resize 495x116 -extent 495x116 "$2"
else
convert "$1" -gravity center -background white -resize "$3" -extent "$3" "$2"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment