X-Git-Url: https://git.sommitrealweird.co.uk/bpgallery.git/blobdiff_plain/104efc9eed8f557a3a92f6fc1dd10913b71ff4aa..82f99e21c12b5ad16229ff5cff088bad710f3a04:/bpgallery.sh diff --git a/bpgallery.sh b/bpgallery.sh index 63a27e8..7a6f9d2 100755 --- a/bpgallery.sh +++ b/bpgallery.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# makegallery.sh - builds a simple 'gallery' from a collection of images +# bpgallery.sh - builds a simple 'gallery' from a collection of images # Copyright (C) 2004 Brett Parker # # This program is free software; you can redistribute it and/or modify @@ -17,22 +17,117 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +set -f + VERSION="0.9.2" +function bpgallery_default_head() { +cat < + + + + ${TITLE} + + + +END +} + +function bpgallery_default_thumbsline() { +cat << END +
+END +} + +function bpgallery_default_tail() { +cat << END + + +END +} + +function bpgallery_default_stylesheet() { +cat <] @@ -44,8 +139,8 @@ Usage: END } -version() { - cat < /dev/null 2>/dev/null ); then +if ( ! $FINDCOMMAND . $FINDIMAGESOPTIONS > /dev/null 2>/dev/null ); then echo "$1 does not contain any images. Quitting." exit 4 fi @@ -86,77 +181,32 @@ else exit 3 fi -find . -type f -name \*.jpg -print0 -or -type f -name \*.gif -print0 -or -type f -name \*.png -print0 -maxdepth 1 | xargs -0 --replace $CONVERTTOOL -resize $WIDTH "{}" "icons/{}" +totalimages=$($FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 --replace echo {} | $WCCOMMAND); +currentimage=0 -cat < index.html - - - - - ${TITLE} - - - -END +$FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 --verbose --max-procs=4 --replace $CONVERTTOOL -resize $WIDTH '{}' 'icons/{}' 2>&1 | while read throwout; do echo done: $currentimage/$totalimages images; currentimage=$((currentimage+1)); done +echo done: $totalimages/$totalimages images -find . -type f -name \*.jpg -maxdepth 1 -print -or -type f -name \*.gif -maxdepth 1 -print -or -type f -name \*.png -maxdepth 1 -print | sed -e 's#^./\(.*\)$#
#' >> index.html +bpgallery_default_head > index.html -cat <> index.html - - -END +$FINDCOMMAND . $FINDIMAGESOPTIONS | $XARGSCOMMAND -0 --replace $ECHOCOMMAND {} |$SORTCOMMAND -g | while read filename; do filename=${filename#./}; bpgallery_default_thumbsline $filename; done >> index.html +bpgallery_default_tail >> index.html cd icons -if ( ls *.jpg > /dev/null 2>/dev/null ); then - TEMPMAX=$(identify *.jpg | sed -r 's#^.*?[0-9]+x([0-9]+)\+.*$#\1#' | sort -g -r | head -n 1) - if [[ $TEMPMAX -gt $MAXHEIGHT ]]; then - MAXHEIGHT=$TEMPMAX - fi -fi -if ( ls *.gif > /dev/null 2>/dev/null ); then - TEMPMAX=$(identify *.gif | sed -r 's#^.*?[0-9]+x([0-9]+)\+.*$#\1#' | sort -g -r | head -n 1) - - if [[ $TEMPMAX -gt $MAXHEIGHT ]]; then - MAXHEIGHT=$TEMPMAX +for imageext in $IMAGEEXTENSIONS; do + if ( ls "*.$imageext" > /dev/null 2>/dev/null ); then + TEMPMAX=$($IDENTIFYCOMMAND *.$imageext | grep "Geometry:" | sed -r 's#^.*Geometry:.*?[0-9]+x([0-9]+)\+.*$#\1#' | $SORTCOMMAND -g -r | $HEADCOMMAND -n 1) + if [[ $TEMPMAX -gt $MAXHEIGHT ]]; then + MAXHEIGHT=$TEMPMAX + fi fi -fi - -if ( ls *.png > /dev/null 2>/dev/null ); then - TEMPMAX=$(identify *.png | sed -r 's#^.*?[0-9]+x([0-9]+)\+.*$#\1#' | sort -g -r | head -n 1) - if [[ $TEMPMAX -gt $MAXHEIGHT ]]; then - MAXHEIGHT=$TEMPMAX - fi -fi +done cd .. - - - -cat < style.css -body { - background: white; - color: black; - font-family: sans-serif; - font-size: 12pt; -} - -div.thumbnail { - float: left; - padding: 20px; - border: 0px; - width: ${WIDTH}px; - height: ${MAXHEIGHT}px; -} -a { - border: 0px; -} -img { - border: 0px; -} -END +bpgallery_default_stylesheet > style.css