Skip to content

Instantly share code, notes, and snippets.

@petrohs
Created December 7, 2021 05:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save petrohs/0cd75f5e861bb20cb2638269a5a83c59 to your computer and use it in GitHub Desktop.
Save petrohs/0cd75f5e861bb20cb2638269a5a83c59 to your computer and use it in GitHub Desktop.
wikiFotosCC¦ Descarga fotos de creativecommons y le da un efecto de foto polaroid
#!/bin/bash
ARCH="$1";
TEXTO="[[${ARCH}]] petrohsW/wikiCommons CC by sa (20181117)"
URL_PAG="https://commons.wikimedia.org/wiki/File:${ARCH}"
wget ${URL_PAG} -o ${ARCH}.log -O ${ARCH}.html
URL_FOTO=$(grep 'div class="fullMedia"' ${ARCH}.html | sed -e "s'.*a href=\"''" -e "s/\" class=\"internal.*//")
wget ${URL_FOTO} -o ${ARCH}.2.log
convert -caption "${TEXTO}" ${ARCH} -bordercolor Lavender -border 5x5 -density 144 -gravity center -pointsize 8 -background black -polaroid +15 -resize 520 polaroid-${ARCH}.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment