Eu tenho este polaroid.sh-Skript:
#!/bin/bash
#
# jpg-Dateien in Vorschau umwandeln.
#
montage -size 256x256 './*jpg' \
-thumbnail 128x128 \
-set caption '%t' \
-bordercolor AliceBlue \
-background grey20 \
-polaroid 0 \
-set label '' \
-background white \
-geometry +1+1 \
-tile 4x .html && firefox ./.html
Talvez você possa adotar algumas ideias. O comando básico montage
está no pacote ImageMagick, que é facilmente instalado:
apt-get install ImageMagick