Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
PhotoKB Home
Discussion Groups
Digital Photography
Digital PhotoDSLR CamerasZLR CamerasPoint & Shoot Cameras
Film Photography
35 mmLarge FormatMedium formatDarkroomFilm and LabsOther Equipment
Photo Technique
Nature PhotographyPeople PhotographyTechnique General
General Photo Topics
General TopicsAustralian PhotographyUK Photography
DirectoryPhoto Clubs

Photo Forum / General Photo Topics / General Topics / March 2007

Tip: Looking for answers? Try searching our database.

Question

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Joe - 26 Mar 2007 01:29 GMT
Is there a program out there which will let me batch process my 1000s of
pics, but allow me to do it without processing one folder at a time? i.e. I
need it to select all photos, but the way the are numbered means each folder
contains the same 'filenames' (sort of), but the photos are different and
because I have so many photos, it would take an age to renumber them all.

Joe.

(By 'processing', I mean 'resizing').
ray - 26 Mar 2007 04:05 GMT
> Is there a program out there which will let me batch process my 1000s of
> pics, but allow me to do it without processing one folder at a time? i.e. I
[quoted text clipped - 5 lines]
>
> (By 'processing', I mean 'resizing').

Sure - find and convert will do that.
Joe - 26 Mar 2007 22:13 GMT
>> Is there a program out there which will let me batch process my 1000s of
>> pics, but allow me to do it without processing one folder at a time? i.e.
[quoted text clipped - 9 lines]
>
> Sure - find and convert will do that.

Is that a program? Do you have a link?

Joe.
ray - 26 Mar 2007 22:22 GMT
>>> Is there a program out there which will let me batch process my 1000s of
>>> pics, but allow me to do it without processing one folder at a time? i.e.
[quoted text clipped - 13 lines]
>
> Joe.

'find' is part of virtually every Unix/Linux distribution. Convert is part
of the Imagemagik program suite - simple web search should get you there.
cyrusthevirus - 26 Mar 2007 22:37 GMT
Il 26/03/2007 23:22, ray dixit:

> 'find' is part of virtually every Unix/Linux distribution. Convert is part
> of the Imagemagik program suite - simple web search should get you there.

LOL!
I guess Joe will be scared, seeing more than 56,000,000 of results for
the "simple" search of /find/ and /convert/.
Imagemagick is here: http://www.imagemagick.com/ (and there is a Windows
version, too).
A lot of examples are here: http://www.imagemagick.org/Usage/

To create thumbnails for a whole directory the basic command (on a Linux
machine) is:
for i in *.jpg ; do convert -size 100x100 $i -quality 40 -resize \
100x100 tn_$i ; done

Since I want "fancy" effects (fading border) around the thumbnails, I
use this one:
for i in *.jpg ; do convert -size 100x100 $i -quality 40 -vignette \
0x20+6+6 -resize 100x100 tn_$i ; done

Cyrus (the /magick/ virus)

Signature

I love to be mailed just by smart people:
perl -we 'print "\12\142\145\162\156\141\155\141\100\146".
\165\156\141\144\151\165\155\56\143\157\155\12\12";'
Spammers scratch here with a diamond to find my address:

ray - 27 Mar 2007 02:04 GMT
> Il 26/03/2007 23:22, ray dixit:
>
[quoted text clipped - 19 lines]
>
> Cyrus (the /magick/ virus)

Thanks for the followup. I've not really used it for anything like that,
though I am familiar with the capabilities.
Joe - 29 Mar 2007 00:02 GMT
> Il 26/03/2007 23:22, ray dixit:
>
[quoted text clipped - 20 lines]
>
> Cyrus (the /magick/ virus)

Phew! Do you guys really use this stuff? ;-) I didn't intend to embark on a
course in Visual Basic, but this looks like some kind of code to be used
with your "favourite compiler" to me. I prefer something a bit more like
"click the OK button and you're done" sort of thing. Needless to say, I'm
still looking for a program to allow me to resize images in multiple folders
and sub-folders, without having to rename them. BTW, you'd think this sort
of feature/function would be implemented in Photoshop and the likes. (Is
it?!).

Joe.
cyrusthevirus - 29 Mar 2007 00:31 GMT
Il 29/03/2007 01:02, Joe dixit:
> "cyrusthevirus" <root@127.0.0.1> wrote in message
>> Imagemagick is here: http://www.imagemagick.com/ (and there is a Windows
[quoted text clipped - 4 lines]
>> for i in *.jpg ; do convert -size 100x100 $i -quality 40 -resize \
>> 100x100 tn_$i ; done

> Phew! Do you guys really use this stuff? ;-)

Yep!
A couple of years ago I was in California. Via Internet I uploaded my
photos directly into my home computer in Italy and I made thumbnails and
other elaborations on the fly with this sort of commands, without to
fill my US friends' hard-disk with useless crap.

> I didn't intend to embark on a
> course in Visual Basic, but this looks like some kind of code to be used
> with your "favourite compiler" to me.

Hehehe!
And this isn't "code" requiring a compiler: it's just a little shell
command, almost easy.

> I prefer something a bit more like
> "click the OK button and you're done" sort of thing.

Well, you can write a "batch" program, in the old DOS way (pre-Windows),
and assign an icon to it. It is just a single line, after all...
I've dozens of these small scripts.

> Needless to say, I'm
> still looking for a program to allow me to resize images in multiple folders
> and sub-folders, without having to rename them. BTW, you'd think this sort
> of feature/function would be implemented in Photoshop and the likes. (Is
> it?!).

Usually open-source programmers are very sensitive to users suggestions,
while commercial programs must deal with the marketing dept. before any
other. Perhaps you can try to propose this to Adobe, or to IrfanView
guys: it seems an interesting and useful improvement.

Cyrus

Signature

Whereof one cannot speak, thereof one must be silent.
Ludwig Wittgenstein, /Tractatus Logico-Philosophicus/

ray - 29 Mar 2007 02:28 GMT
>> Il 26/03/2007 23:22, ray dixit:
>>
[quoted text clipped - 31 lines]
>
> Joe.

Depends a little on whether you want to get the job done or spend days
looking for the right gui based software package.
Scott W - 26 Mar 2007 22:33 GMT
> Is there a program out there which will let me batch process my 1000s of
> pics, but allow me to do it without processing one folder at a time? i.e. I
[quoted text clipped - 5 lines]
>
> (By 'processing', I mean 'resizing').

IrfanView will do what you want, and it is free

Scott
Joe - 29 Mar 2007 00:05 GMT
>> Is there a program out there which will let me batch process my 1000s of
>> pics, but allow me to do it without processing one folder at a time? i.e.
[quoted text clipped - 11 lines]
>
> Scott

Irfan View is a neat lil program, but I couldn't get it to create
sub-folders, only the 'root' folder of each.

Cheers.
Joe.
Scott W - 29 Mar 2007 00:47 GMT
> >> Is there a program out there which will let me batch process my 1000s of
> >> pics, but allow me to do it without processing one folder at a time? i.e.
[quoted text clipped - 17 lines]
> Cheers.
> Joe
Yes it can, it is in the advance options dialog, check "Create
subdirectories in destination folder".

Scott
Joe - 29 Mar 2007 22:08 GMT
>> >> Is there a program out there which will let me batch process my 1000s
>> >> of
[quoted text clipped - 25 lines]
>
> Scott

You're right, I just did it. Thanks for a great lil program!

Joe.
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.