Hi Scott,
Thanks for using our products.
JAI was required in Aspose.Pdf.Kit for Java during PDF to Image conversion. However since April-2013, Aspose.Pdf.Kit for Java has been merged into Aspose.Pdf for Java and now the product is not dependent on JAI. You can perform PDF to Image (JPEG, PNG, TIFF etc) conversion without referencing JAI in classpath. I would recommend you to please try using the
latest release of Aspose.Pdf for Java and in case you encounter any issue or you have any further query, please feel free to contact.
The following code snippet shows how to convert PDF file to TIFF format.
[Java]
// instantiate PdfConverter object<o:p></o:p>
com.aspose.pdf.facades.PdfConverter converter = new com.aspose.pdf.facades.PdfConverter();
// set the resolution of resultant
image file
converter.setResolution(new
com.aspose.pdf.Resolution(300));
// bind the source PDF file
converter.bindPdf("C:\\pdftest\\AddImage_result.pdf");
// initialize the conversion process
converter.doConvert();
ByteArrayOutputStream outStream = new ByteArrayOutputStream();
// save the output in TIFF format
converter.saveAsTIFF(outStream);
FileOutputStream fout = new
FileOutputStream("c:/pdftest/AddImage_result_test2.tiff");
fout.write(outStream.toByteArray());