We have around 10 million PCL files that need to be converted to PDF.
Followed example code for PDF
// Instantiate LoadOption object using PCL load option
PclLoadOptions loadoptions = new PclLoadOptions();
// Create Document object
Document doc = new Document(“Document.pcl”, loadoptions);
// Save the resultant PDF document
doc.save(“test1-converted.pdf”);
We got blank file when running our test.
Questions:
What entries can be made for loadoptoins?
Does Document Class require a File or InputStream?
Is the conversion to PDF during the Save or when Document is created from
Document doc = new Document(“Document.pcl”, loadoptions)?