GIMP plugin DBP (David's Batch Processor) for Ubuntu?
Sven Richter
sveri-list at gmx.de
Mon Jul 2 15:05:10 UTC 2007
Hi,
On Monday 02 July 2007 15:29:39 Ed Smits wrote:
> Running Feisty, need to batch resize lots of images, want to use the
> GIMP plugin DBP
>
> http://members.ozemail.com.au/~hodsond/dbp.html
>
> I can't get it to make, errors out when I try using both the latest
> source code as well as an earlier version. I have build essentials
> installed.
>
> http://ubuntuforums.org/showthread.php?t=170862
>
> says that I need to have gimptool, and the gimp-devel packages as well
> installed, yet I can find no track of them in Synaptic.
>
> Anyone have this plugin working who can tell me how to do it?
>
I dont know anything about the plugin, but resizing can be simply done
with imagemagick.
F.I. put these lines in a bash script and execute it:
for file in `ls *.jpg`
do
convert -scale 140x140 $file klein/$file
done
Thats it, it resizes every jpg file in the folder you startet
it to 140x140 and copies it to the "klein" directory.
You could put some things around it, like writing
a simple html page into a file.
Just as an idea what imagemagick and bash can
do for you.
Greetings
Sven Richter
More information about the ubuntu-users
mailing list