__/ [Claudio Daffra] on Wednesday 11 January 2006 20:42 \__
> hi all
>
> i 'm new in this ng, and new to use gimp
> my problem :
> i have a several number of image in a dir /image
> and i want apply script toon at all image
> how can ?
>
> regards
>
> claudio
Try to use ImageMagick. It makes batch-mode operations easier. For example:
for file in ls *.jpg
do
echo ${file}
convert ${file} -resize 600x400 +profile "*" ${file}.jpg
done
The above will resize all the files to 600x400 (man mogrify; man convert...).
Another thing you might wish to consider are tools Like PixiePlus (available
for Linux and perhaps more platforms), which applies a variety of nice
filters to many pictures at once (well, in series). It does shading,
borders, liquid transformations and plenty more! Many of these effects are
'relatives' of equivalents from the GIMP, including Script-Fus.
Hope it helps,
Roy
--
Roy S. Schestowitz | "Disk quota exceeded; sig discontinued"
http://Schestowitz.com | SuSE Linux | PGP-Key: 0x74572E8E
5:45am up 32 days 12:56, 14 users, load average: 0.55, 0.63, 0.65
|
|