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.
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.
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.
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.
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.
"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
>
>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?
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
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).
> 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
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
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.