#!/bin/sh
PRELUDE='magick -size 640x360 canvas:transparent -font FreeSans-Bold -gravity North -fill White'
$PRELUDE \
    -pointsize 48 -draw "text 0,45 'How to wash your hands:\nsteps and timing'" \
    -pointsize 30 -draw "text 0,165 'Video by dkl9, hand images by Hong Kong\nCentre for Health Protection (2020)'" \
    -font FreeMono -pointsize 28 -draw "text 0,270 'https://DKL9.net/essays/handwash_how'" \
    title.png
$PRELUDE -pointsize 60 -draw "text 0,120 'Wet hands\nwith clean water'" wet.png
$PRELUDE -pointsize 60 -draw "text 0,150 'Apply enough soap'" soap.png
$PRELUDE -pointsize 60 -draw "text 0,90 'Rinse hands\nthoroughly\nwith clean water'" rinse.png
$PRELUDE -pointsize 60 -draw "text 0,150 'Dry hands thoroughly'" dry.png
