The Transporter |
06-25-2006 07:21 AM |
Quote:
Originally Posted by P_Zero_Rosso
Damn, you're fast. I also went today but my pics are barely transferred to my laptop. Now comes the hard editting job...
Nice work on the F1 paddock and FXX ones!
|
Hello P_zero_rosso,
I transfered the pictures on my workstation, then I execute a small script, it's written in bash (for linux), but you can also use it in Windows in a .bat file, but I don't know the syntax, it shouldn't be hard to convert to ms dos ;)
here it is:
Code:
for i in *.JPG;
do
mogrify -enhance -normalize -sharpen 2x2+2+2 -quality "75%" -resize "1024x768>" "$i";
composite -watermark 25 -gravity SouthEast ../sig300.png "$i" "$i";
mogrify -bordercolor black -border 2 "$i";
jhead -rgt "$i";
done
And it produce an enhanced normalized image in 1024x768, with a blackborder, with my signature included ;)
From 1.2Go, I came to 55Mo :) pretty good !
You can find the mogrify and composite tools in the program imagemagick ( http://www.imagemagick.org/ )
Cya!
|