[Digikam-users] export filter and file name/position normalization

jdd jdd at dodin.org
Sat Dec 19 12:45:35 GMT 2009


Le 19/12/2009 13:11, Marie-Noëlle Augendre a écrit :
> So I am, and interested as much ;)
> 
> 2009/12/19 Sylvain ZUCCA <sylvainsjc at gmail.com>:
>> Hello,
>>
>> I also use Piwigo and interested for an export tool
>>
>> Best regards
>>
>> 2009/12/19 jdd <jdd at dodin.org>
> 
> 
> 
here the script. Go in the original images folder. The script creates
the sub-folders, copy the files in the good place and create the small
size image and the thumbnails

.............
#!/bin/sh

# usage: se placer dans le répertoire de la galerie (avec les fichiers
HD)
#lancer "sh piwi.sh"

#On se retrouve avec les bons fichiers dans le bon répertoire

#il n'y a plus qu'à copier ca vers la galerie piwi

mkdir thumbnail
mkdir pwg_high

for I in *.jpg ; do
        echo $I
        mv $I pwg_high/
        convert -resize 800x800 pwg_high/$I $I ;
        convert -resize 128x128 $I thumbnail/TN-$I ;
done
...............

jdd
-- 
http://www.dodin.net
http://valerie.dodin.org
http://news.opensuse.org/2009/04/13/people-of-opensuse-jean-daniel-dodin/



More information about the Digikam-users mailing list