blob: 88e426bb086ae29331e82a32fb50dd19443c9ac8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
|