Hi,
I got data misalignment from line 49
when I try to convert pdf to excel.
Tested OSs were Win7 and Win10
.NET target platform is .net 6.0
Using SDK: Aspose.PDF for .Net 24.4
Test code
void ConvertPDFtoExcel_XLSX_Format(string filename)
{
// The path to the documents directory.
// Load PDF document
Document pdfDocument = new Document(filename);
// Initialize ExcelSaveOptions
ExcelSaveOptions opts = new ExcelSaveOptions();
// Set output Excel XLSX format
opts.Format = ExcelSaveOptions.ExcelFormat.XLSX;
// Minimize number of Worksheets
opts.MinimizeTheNumberOfWorksheets = true;
// Save the output in XLS format
pdfDocument.Save(filename + ".PDFToXLS_out.xlsx", opts);
}
ZONG-81.pdf.7z (9.2 KB)
ZONG-81.xlsx.7z (15.2 KB)