Re: How to resize Pictures

2003-07-03 Thread Dominique Dumont
Jake Johnson [EMAIL PROTECTED] writes: Hello, I need to know a fast way to convert 1600x1200 to 800x600 pictures from the command line. Any ideas on how to do this? Another way (in true unix style ;-) ) is to use the pnm package: anytopnm oldfile | pnmscale --reduce ... | pnmtoxxx newfile

Re: How to resize Pictures

2003-07-03 Thread Jake Johnson
Is pnm better (in speed or quality) over mogrify (imagemagick)? Regards, Jake Johnson [EMAIL PROTECTED] __ Plutoid - http://www.plutoid.com - Shop Plutoid for the best prices on Rims, Car Audio, and Performance Parts. On Thu,

Re: How to resize Pictures

2003-06-30 Thread Tim
Jake Johnson wrote: Hello, I need to know a fast way to convert 1600x1200 to 800x600 pictures from the command line. Any ideas on how to do this? apt-get install ImageMagick $ mogrify -geometry 800x600 bigpic.jpg HTH Tim -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of

Re: How to resize Pictures

2003-06-30 Thread Mark C
On Fri, 2003-06-27 at 15:18, Jake Johnson wrote: Hello, I need to know a fast way to convert 1600x1200 to 800x600 pictures from the command line. Any ideas on how to do this? By the time you got a reply from this list, you could of used gimp ;) I may not be sure, but try the 'convert'

How to resize Pictures

2003-06-29 Thread Jake Johnson
Hello, I need to know a fast way to convert 1600x1200 to 800x600 pictures from the command line. Any ideas on how to do this? Regards, Jake Johnson [EMAIL PROTECTED] -- Plutoid - http://www.plutoid.com - Shop Plutoid for the best

Re: How to resize Pictures

2003-06-29 Thread Karsten M. Self
on Fri, Jun 27, 2003 at 07:18:22AM -0700, Jake Johnson ([EMAIL PROTECTED]) wrote: Hello, I need to know a fast way to convert 1600x1200 to 800x600 pictures from the command line. Any ideas on how to do this? apt-get install imagemagick man convert mogrify apt-cache show galrey #

Re: How to resize Pictures

2003-06-29 Thread Stephen Patterson
On Sun, 29 Jun 2003 08:30:13 +0200, Jake Johnson wrote: Hello, I need to know a fast way to convert 1600x1200 to 800x600 pictures from the command line. Any ideas on how to do this? You can use mogrify from the imagemagick package, thusly mogrify -geometry 100x100 file -- Stephen Patterson

Re: How to resize Pictures

2003-06-29 Thread Carl Fink
On Fri, Jun 27, 2003 at 07:18:22AM -0700, Jake Johnson wrote: I need to know a fast way to convert 1600x1200 to 800x600 pictures from the command line. Any ideas on how to do this? convert -resize 800x600 imagename newimagename Convert is in the imagemagick package. -- Carl

Re: How to resize Pictures

2003-06-29 Thread Kent West
Jake Johnson wrote: Hello, I need to know a fast way to convert 1600x1200 to 800x600 pictures from the command line. Any ideas on how to do this? I did this a few months back, and once I figured out the command to use and the syntax, it was really easy. mogrify -resize 800x600 *jpg I

Re: How to resize Pictures

2003-06-29 Thread Michael Heironimus
On Fri, Jun 27, 2003 at 07:18:22AM -0700, Jake Johnson wrote: Hello, I need to know a fast way to convert 1600x1200 to 800x600 pictures from the command line. Any ideas on how to do this? Install ImageMagick and use convert or mogrify to resize. They can do a number of other handy things,