convert TIF->JPG with jmagick

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
paulohess
Posts: 8
Joined: 2011-11-09T12:10:04-07:00
Authentication code: 8675308

convert TIF->JPG with jmagick

Post by paulohess »

Hi

I am trying to convert a TIF image to JPG with java API jmagick.
I know this much:

ImageInfo info = new ImageInfo("img.TIF"); //full path
MagickImage image = new MagickImage(info);
(no error up to this point and it runs just fine)

how do I proceed?

Thanks
Paulo
Post Reply