Page 1 of 1

convert TIF->JPG with jmagick

Posted: 2012-05-01T12:36:10-07:00
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