Tom's Hardware > Forum > Digital Camera > Digital Camera General > Program for batch progressing images wanted

Program for batch progressing images wanted

Forum Digital Camera : Digital Camera General - Program for batch progressing images wanted

Tom's Hardware: Over 1.4 million members in 6 different countries available to answer all your high-tech questions. Sign up now! Its free!
Word :    Username :           
 

Archived from groups: rec.photo.digital (More info?)

 

I'm looking for a suitable program that can change the dimensions of
photo images in batch progressing (working on many images at once).
Can someone please recommend a suitable program.

Regards Brian

Sponsored Links
Register or log in to remove.

Archived from groups: rec.photo.digital (More info?)

 

Brian wrote:
> I'm looking for a suitable program that can change the dimensions of
> photo images in batch progressing (working on many images at once).
> Can someone please recommend a suitable program.

Irfanview - http://www.irfanview.com

Click File->Batch Conversion/Rename-> Set Advanced Options

HTH,

Siddhartha

Reply to Anonymous

Archived from groups: rec.photo.digital (More info?)

 

"Siddhartha Jain" <losttoy@gmail.com> wrote in message
news:1115043176.239530.191360@f14g2000cwb.googlegroups.com...
> Brian wrote:
> > I'm looking for a suitable program that can change the dimensions of
> > photo images in batch progressing (working on many images at once).
> > Can someone please recommend a suitable program.
>
> Irfanview - http://www.irfanview.com
>
> Click File->Batch Conversion/Rename-> Set Advanced Options
>
> HTH,
>
> Siddhartha
>

Also, (if you have Adobe Photoshop) you can use the 'WebPage...' command in
Adobe Photoshop to batch-convert your pic's to another dimention.

'File > Automate > WebPage...'

Then you get a webpage on your hdd that contains sevral folders .
One of thees folders contains the pic's in the format your requested in the
'WebPage...' command.

AP

Reply to Anonymous

Archived from groups: rec.photo.digital (More info?)

 

Brian <bclark@es.co.nz> wrote:
>I'm looking for a suitable program that can change the dimensions of
>photo images in batch progressing (working on many images at once).
>Can someone please recommend a suitable program.

You can try this perl script (untested):

open(F,"ls *.jpg |" ) || die "";
while(<F> ) {
s/\r?\n\z//s;
s/\.\w{1,3}\z//s;
$base=$_;
system("djpeg ".$base.".jpg | pnmscale -width=100 | cjpeg > ".$base.".jpg" );
}
close F;


You will need "netpbm" and "jpeg-6b" packages.
Useing unix (www.freebsd.org etc..) will ease your task.

Reply to Anonymous

Archived from groups: rec.photo.digital (More info?)

 

On Tue, 03 May 2005 01:43:09 +1200, Brian wrote:

> I'm looking for a suitable program that can change the dimensions of
> photo images in batch progressing (working on many images at once).
> Can someone please recommend a suitable program.

JpegSizer does a great job at this. Free trial available at the link below.

--
Versatile image resizer for web pages, email attachments
and online photo-printing services
http://jpegsizer.tangotools.com/?s=ng

Reply to Anonymous

Archived from groups: rec.photo.digital (More info?)

 

The best free batch processing program I've found and use regularly is
Imagen and can be found at

http://www.pixoid.com/

The results are far superior than Irfanview .

Graham .

"Brian" <bclark@es.co.nz> wrote in message
news:kebc715oh2s671s7il7najubd0di12bva0@4ax.com...
> I'm looking for a suitable program that can change the dimensions of
> photo images in batch progressing (working on many images at once).
> Can someone please recommend a suitable program.
>
> Regards Brian
>

Reply to Anonymous

Archived from groups: rec.photo.digital (More info?)

 

pbdelete@spamnuke.ludd.luthdelete.se.invalid wrote:

>Brian <bclark@es.co.nz> wrote:
>>I'm looking for a suitable program that can change the dimensions of
>>photo images in batch progressing (working on many images at once).
>>Can someone please recommend a suitable program.
>
>You can try this perl script (untested):
>
>open(F,"ls *.jpg |" ) || die "";
>while(<F> ) {
> s/\r?\n\z//s;
> s/\.\w{1,3}\z//s;
> $base=$_;
> system("djpeg ".$base.".jpg | pnmscale -width=100 | cjpeg > ".$base.".jpg" );
> }
>close F;
>
>
>You will need "netpbm" and "jpeg-6b" packages.
>Useing unix (www.freebsd.org etc..) will ease your task.

I was looking for a utility type computer program (one that has an exe
extension) than a program script.
What program runs or compiles this script?

Regards Brian

Reply to Brian

Archived from groups: rec.photo.digital (More info?)

 

Brian wrote:
> pbdelete@spamnuke.ludd.luthdelete.se.invalid wrote:
>
>> Brian <bclark@es.co.nz> wrote:
>>> I'm looking for a suitable program that can change the dimensions of
>>> photo images in batch progressing (working on many images at once).
>>> Can someone please recommend a suitable program.
>>
>> You can try this perl script (untested):
>>
>> open(F,"ls *.jpg |" ) || die "";
>> while(<F> ) {
>> s/\r?\n\z//s;
>> s/\.\w{1,3}\z//s;
>> $base=$_;
>> system("djpeg ".$base.".jpg | pnmscale -width=100 | cjpeg >
>> ".$base.".jpg" ); }
>> close F;
>>
>>
>> You will need "netpbm" and "jpeg-6b" packages.
>> Useing unix (www.freebsd.org etc..) will ease your task.
>
> I was looking for a utility type computer program (one that has an exe
> extension) than a program script.
> What program runs or compiles this script?
>
> Regards Brian

Perl, e.g. these people do a free version:

http://www.activestate.com/Products/ActivePerl/

which runs on Windows as well.

David

Reply to Anonymous

Archived from groups: rec.photo.digital (More info?)

 

On Tue, 03 May 2005 01:43:09 +1200 in rec.photo.digital, Brian
<bclark@es.co.nz> wrote,
>I'm looking for a suitable program that can change the dimensions of
>photo images in batch progressing (working on many images at once).

http://www.imagemagick.org/

Reply to Anonymous

Archived from groups: rec.photo.digital (More info?)

 

pbdelete@spamnuke.ludd.luthdelete.se.invalid writes:

> Brian <bclark@es.co.nz> wrote:
> >I'm looking for a suitable program that can change the dimensions of
> >photo images in batch progressing (working on many images at once).
> >Can someone please recommend a suitable program.
>
> You can try this perl script (untested):
>
> open(F,"ls *.jpg |" ) || die "";
> while(<F> ) {
> s/\r?\n\z//s;
> s/\.\w{1,3}\z//s;
> $base=$_;
> system("djpeg ".$base.".jpg | pnmscale -width=100 | cjpeg > ".$base.".jpg" );
> }
> close F;

Or using Imagemagick (http://www.imagemagick.org). You can use it either
through perl or from the command line. For example from the shell:

$ cd /foo/input
$ mkdir -p /foo/output
$ for x in *.jpg; do convert -geometry=400x300 -quality=75 $x /foo/output/$x; done

--
Michael Meissner
email: mrmnews@the-meissners.org
http://www.the-meissners.org

Reply to Anonymous

Archived from groups: rec.photo.digital (More info?)

 

In article <kebc715oh2s671s7il7najubd0di12bva0@4ax.com>, bclark@es.co.nz
(Brian) wrote:

> *From:* Brian <bclark@es.co.nz>
> *Date:* Tue, 03 May 2005 01:43:09 +1200
>
> I'm looking for a suitable program that can change the dimensions of
> photo images in batch progressing (working on many images at once).
> Can someone please recommend a suitable program.
Thumbs Plus has various batch options and I believe a demo can be
downloaded to try out.
Iain

Reply to Anonymous
Tom's Hardware > Forum > Digital Camera > Digital Camera General > Program for batch progressing images wanted
Go to:

There are 836 identified and unidentified users. To see the list of identified users, Click here.

Please mind

You are about to answer a thread that has been inactive for more than 6 months.
If you still wish to proceed, please ensure that your posting is original and does not duplicate or overlap any prior responses to this thread.

Add a reply Cancel
Sponsored links
  • Ask the community now
  • Publish
Ad
They won a badge
Join us in greeting them