image format converter

Wayne Lovely wayne.lovely@voyager.net
Tue, 12 Sep 2000 15:17:40 -0400


If you have ImageMagick you can try 
something like this


#!/usr/bin/perl

@files = `find . -name "*.tif"`;

foreach $file ( @files ) {

  chop $file;

  $file2 = $file;
  $file2 =~ s/tif/jpg/;

  $cmd = "convert $file $file2";

  print $cmd, "\n";
  `$cmd`;

}




"Daniel R. Kilbourne" wrote:
> 
> depends on platform...
> 
> for Mac, try http://www.kamit.com/gifconverter/
> 
> I know Photoshop can do it also, so that would work for mac/winblows....
> 
> for linux, you may want to try gimp...I am pretty sure it has that
> capability, or 'ImageMagick'
> 
> At 02:52 PM 9/12/2000 -0400, Mark Szidik - MLC wrote:
> 
> >Anybody know of a program to convert tiff files to jpeg?
> >
> >I have over 1000 (9.8MB each) tiff files that I would like to convert to
> >jpegs in a batch process.
> >
> >
> >-Mark
> >
> >_______________________________________________
> >linux-user mailing list
> >linux-user@egr.msu.edu
> >http://www.egr.msu.edu/mailman/listinfo/linux-user
> 
> ___
> 
> Daniel R. Kilbourne
> daniel.kilbourne@voyager.net
> Voyager.net Network Engineer
> 
> _______________________________________________
> linux-user mailing list
> linux-user@egr.msu.edu
> http://www.egr.msu.edu/mailman/listinfo/linux-user