diff options
Diffstat (limited to 'util/process-img')
-rwxr-xr-x | util/process-img | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/util/process-img b/util/process-img new file mode 100755 index 0000000..88e426b --- /dev/null +++ b/util/process-img @@ -0,0 +1,23 @@ +#!/bin/sh +# Process images in the directory. Creates: +# - A directory large/, with all the images in full. +# - A directory small/, with all the images 600x400. +# - An output file, images.html, with the figcaptions for each of them. +# The href of the large will be $1/large/image.jpg. +# +# TODO +# - Make it so it doesn't add entries for large/ and small/ dirs. + + +URL_PREFIX="$1" + +mkdir -p small +mkdir -p large + +for file in * +do + echo "Currently on: ", $file + cp "$file" "large/$file" + convert -resize 600X400 "$file" "small/$file" + echo "<figure>\n\t<a\n\t\thref=\"$1/large/$file\"><img\n\t\tsrc=\"small/$file\" alt=\"TODO\" width=\"600\"\n\t\theight=\"400\"/></a>\n<figcaption>TODO</figcaption>\n</figure>\n\n" >> images.html +done |