Can anyone suggest me any of the java API to convert the existing pdf into tiff so that i can use the file to send as a fax.
Thanks in advance.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35254
7
posted
0
One possible approach would be to render the PDF into a Swing component (using the PDFRenderer library), and then to render that component into an image. Then you can save the image using the ImageIO class (which supports TIFF with the help of this library).