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
Basic question
Re: Basic question
Code: Select all
convert input.tif -resize 1024X768 output.jpg
If you want to remove all EXIF data etc. apart from the colour profile use -thumbnail instead of -resize
-
- Posts: 3
- Joined: 2014-04-10T11:00:55-07:00
- Authentication code: 6789
Re: Basic question
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.
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Basic question
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.
-
- Posts: 3
- Joined: 2014-04-10T11:00:55-07:00
- Authentication code: 6789
Re: Basic question
Yes they are a warning message. Is there anyway of suppressing those warning?
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Basic question
snibgo's IM pages: im.snibgo.com