From 4d0bd914e7c1ee65f4036e60149a7b891906a5d3 Mon Sep 17 00:00:00 2001 From: George Abbott Date: Tue, 31 Oct 2023 17:54:07 +0000 Subject: Commit all to date. --- util/process-img | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 util/process-img (limited to 'util/process-img') 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 "
\n\t\n
TODO
\n
\n\n" >> images.html +done -- cgit v1.2.1