summaryrefslogtreecommitdiff
path: root/util/process-img
diff options
context:
space:
mode:
authorGeorge Abbott <george@gabbott.dev>2023-10-31 17:54:07 +0000
committerGeorge Abbott <george@gabbott.dev>2023-10-31 17:54:07 +0000
commit4d0bd914e7c1ee65f4036e60149a7b891906a5d3 (patch)
treec2a6751823e064e003cd4f6166df07bfc106d7eb /util/process-img
Commit all to date.
Diffstat (limited to 'util/process-img')
-rwxr-xr-xutil/process-img23
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