#! /bin/bash
# [[thumbnails ]] Script to automatically create thumbnails
# Usage:
# Required: convert, imagemagick
#
# Authors:
# FR, radeff@akademia.ch
# History
# 10 mai 2007, 20:25:45: FR, created
#########
find . -name "*.jpg" | while read i
do
j=cat $i | sed 's|^..||g'
#j="th_"$i
echo $j
	 convert -thumbnail 60 $i th_$i
done
 
info/thumbnails.txt · Dernière modification: 2008/11/11 11:37 (modification externe)
 
Recent changes RSS feed Creative Commons License Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki