Page 1 of 1

Basic question

Posted: 2014-04-10T11:07:04-07:00
by Hosting.mgr
Sorry to be the newbie but I have a ton of images (tiff) files that I would like to reduce and I am having a hard time figuring out the command line.

I would like the images reduced to 1024X768 and would appreciate some guidance. I have tried the -resample and -density. Once I get the command line down I can figure out how to convert all the files in a directory. Windows command line

Re: Basic question

Posted: 2014-04-10T11:17:09-07:00
by Bonzo

Code: Select all

convert input.tif -resize 1024X768 output.jpg
This will resize the image so that the longest dimension is either width 1024 or height 768 and will maintain the aspect ratio.
If you want to remove all EXIF data etc. apart from the colour profile use -thumbnail instead of -resize

Re: Basic question

Posted: 2014-04-10T11:40:53-07:00
by Hosting.mgr
I am receiving an error "Incorrect value for "Photoshop"; tag ignored. 'TIFFFetchNormalTag' @ warning/tiff.c/TIFFWarnings/850." but it worked. I think the error was throwing me off.

Re: Basic question

Posted: 2014-04-10T12:05:59-07:00
by fmw42
Was that an error or warning. IM will issue warnings if it does not know about some meta tag, but that does not mean anything bad. Tiff based files have many meta tags that can be used to save information, but they do not affect the image pixel data.

Re: Basic question

Posted: 2014-04-22T10:57:39-07:00
by Hosting.mgr
Yes they are a warning message. Is there anyway of suppressing those warning?

Re: Basic question

Posted: 2014-04-22T11:05:56-07:00
by snibgo