I am getting an empty pdf while running the below code, Can you assist me with correct settings.
I am using Aspose.Ocr 22.10 version and Aspose.Page 22.10 version
Input XPS docs.7z (325.2 KB)
Output converted.pdf (1.2 KB)
AsposeOcr api = new AsposeOcr();
License lic = new License();
lic.SetLicense("Aspose.OCR.NET.lic");
string path = @"D:\OCR\TIFFs\XPS docs\Sample2.xps";
// Initialize PDF output stream
using (System.IO.MemoryStream xpsStream = new MemoryStream(File.ReadAllBytes(path)))
// Initialize XPS input stream
using (System.IO.MemoryStream pdfStream = new MemoryStream())
{
{
// Load XPS document form the stream
XpsDocument document = new XpsDocument(path, new XpsLoadOptions());
Aspose.Page.XPS.Presentation.Pdf.PdfSaveOptions options = new Aspose.Page.XPS.Presentation.Pdf.PdfSaveOptions()
{
JpegQualityLevel = 100,
ImageCompression = Aspose.Page.XPS.Presentation.Pdf.PdfImageCompression.LzwBaselinePredictor,
TextCompression = Aspose.Page.XPS.Presentation.Pdf.PdfTextCompression.Flate,
PageNumbers = new int[] { 1,2}
};
// Create rendering device for PDF format
Aspose.Page.XPS.Presentation.Pdf.PdfDevice device = new Aspose.Page.XPS.Presentation.Pdf.PdfDevice(pdfStream);
document.Save(device,options);
List<RecognitionResult> result = new List<RecognitionResult>();
pdfStream.Position = 0;
result.AddRange(api.RecognizePdf(pdfStream, new DocumentRecognitionSettings()));
AsposeOcr.SaveMultipageDocument(@"D:\OCR\TIFFs\XPS docs\converted.pdf", SaveFormat.Pdf, result);
}
}
We have reproduced this issue in our environment and have logged it as OCRNET-611 in our issue tracking system. We will further look into its details and keep you posted with its rectification status. Please be patient and spare us some time.
At the moment the ticket is under the phase of investigation and we have not come up with an ETA yet. As soon as we have some updates, we will let you know. Please spare us some time.
Hi @asad.ali, This ticket status seems resolved . When will this fix get release. I tried using Aspose.OCR 22.11.1 seems it is not part of this version