2012-03-04 12:39:12 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
2013-02-22 01:09:37 +00:00
|
|
|
# Make graphics required for the website but not for the book.
|
2012-03-04 12:39:12 +00:00
|
|
|
# They go into web/<book>.
|
|
|
|
#
|
|
|
|
|
|
|
|
if [ $# != 1 ]; then
|
2013-02-22 01:09:37 +00:00
|
|
|
echo "Usage: makeWebGraphics.sh <book dir name>"
|
2012-03-04 12:39:12 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
dir=`pwd`
|
|
|
|
|
|
|
|
booke=$dir/$1
|
|
|
|
builddir=$dir/web/$1
|
|
|
|
graphicsdir=$dir/graphics/$1
|
|
|
|
|
|
|
|
mkdir -p $builddir
|
|
|
|
|
2013-02-22 01:09:37 +00:00
|
|
|
# Now, for each tune, make the main tune and tune first line bitmaps.
|
|
|
|
# Do this to temp files and rename into place to make updates as
|
|
|
|
# atomic as possible.
|
2012-03-04 12:39:12 +00:00
|
|
|
find $booke -name "*.abc" | sort |
|
|
|
|
while read filename
|
|
|
|
do
|
|
|
|
name=`basename $filename .abc`
|
2012-03-05 09:33:07 +00:00
|
|
|
tmpname=${name}.tmp
|
2016-11-04 23:31:40 +00:00
|
|
|
convert -colors 256 -quality 90 -density 200 $graphicsdir/${name}.pdf $builddir/${tmpname}.png
|
|
|
|
convert -colors 256 -quality 90 -density 200 $graphicsdir/firstline-${name}.pdf $builddir/firstline-${tmpname}.png
|
2012-03-04 12:39:12 +00:00
|
|
|
|
2013-02-10 18:27:29 +00:00
|
|
|
mv $builddir/${tmpname}.png $builddir/${name}.png
|
2013-02-17 00:27:07 +00:00
|
|
|
mv $builddir/firstline-${tmpname}.png $builddir/firstline-${name}.png
|
2013-07-17 18:28:07 +01:00
|
|
|
|
|
|
|
# Make the web downloadable PDF with the tune title.
|
|
|
|
abcm2ps -E -F singletuneweb -O $builddir/$name.eps $filename
|
|
|
|
# And make the corresponding PDF.
|
|
|
|
epstopdf --outfile=$builddir/$name.pdf $builddir/${name}001.eps
|
2015-12-13 22:46:55 +00:00
|
|
|
rm $builddir/${name}001.eps
|
2012-03-04 12:39:12 +00:00
|
|
|
done
|