Skip to content

Instantly share code, notes, and snippets.

@Canx
Created September 4, 2020 07:32
Show Gist options
  • Save Canx/dca51100ad8fb0d015b143102fa765bf to your computer and use it in GitHub Desktop.
Save Canx/dca51100ad8fb0d015b143102fa765bf to your computer and use it in GitHub Desktop.
procesar fotos de la orla
#!/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