How do I convert multiple pdf file to a single tiff file using java?
Can anyone help me to render the multi pages of Pdf file as a single Tiff Im开发者_JAVA百科age file using Java code. Thanks.
You can use the PDFBox library from Apache to read the file:
- http://pdfbox.apache.org/
Here is a full working example you can use to start:
- http://kickjava.com/src/org/pdfbox/PDFToImage.java.htm
精彩评论