How can I convert JPEG to TIFF?

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
LAPIII
Posts: 3
Joined: 2011-07-19T10:25:45-07:00
Authentication code: 8675308

How can I convert JPEG to TIFF?

Post by LAPIII »

Do I just open a terminal and enter:

Code: Select all

convert TOA.jpeg TOA.tif
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: How can I convert JPEG to TIFF?

Post by fmw42 »

yes, as long as ImageMagick is properly installed. if you installed from source not binary, then you need to install the jpg and tiff delegate libraries and then re-install IM. If you installed from binary, then both should likely be there.

You can check by typing:

convert -list configure

look at the line starting DELEGATES and see if jpeg and tiff are listed.
Post Reply