Cheers,
Using Aspose 23.4.0 (latest at time of post), we’re running in a ‘hang’ situation when attempting to open a PCL document. It is fairly simple PCL file that was generated from a Windows LPR printer (text file, seems I am unable to attach on forum posts).
The bit of code we’re using is:
PclLoadOptions loadOptions = new Aspose.Pdf.PclLoadOptions();
loadOptions.ConversionEngine = Aspose.Pdf.PclLoadOptions.ConversionEngines.NewEngine;
loadOptions.SupressErrors = false;
loadOptions.WarningHandler = new WarningHandler();
Document doc = new Document(inputPath, loadOptions); <<- never comes back from this call
doc.Save(outputPath);
We have tried with and without some of the options specified above.
Any and all support is immensely appreciated.