Created
September 4, 2020 07:32
-
-
Save Canx/dca51100ad8fb0d015b143102fa765bf to your computer and use it in GitHub Desktop.
procesar fotos de la orla
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 | |
for image in fotos/*.jpg | |
do | |
echo "Procesando $image..." | |
filename=`basename "$image" | cut -d'.' -f1` | |
new_image="./orla/$filename.jpg" | |
convert "$image" -resize 500x500 -gravity center -background white -extent 500x500 "$new_image" | |
convert "$new_image" -background White label:"$filename" +swap -gravity Center -append "$new_image" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment