Last active
October 17, 2019 20:11
-
-
Save saderuuu/c1ce6d8893d32cb0ba41105c5c7e130e to your computer and use it in GitHub Desktop.
Redimensionador de imagens
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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