If you are available, we can arrange a meeting. I can show you the actual requirements.
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.
Issue ID(s): PDFNET-59057
You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.
How can I track the status of this ticket :- PDFNET - 59057 ?
PdfTable.png (76.7 KB)
ExtrectedOutputUsingAsposeTableMethod.png (19.2 KB)
I am trying to extract table data from a PDF, where the PDF contains only 3 columns, but when I fetch the data, it is showing 4 columns instead. There are several issues like this. For reference, I have attached images where you can see that ‘PdfTable’ represents my data in the PDF, and ‘ExtractedOutputUsingAsposeTableMethod’ shows the data I am getting using the table method of Aspose.
You can check the status of the ticket at the bottom of this forum thread where it is attached. Additionally, we will also update you as soon as we make some progress towards ticket resolution.
Are you using the API with a valid license? Please try using a 30-days free temporary license and let us know if you still notice this issue.
What’s the status of this ticket :- PDFNET - 59057 ?
The ticket has recently been logged in our issue management system. It will be prioritized on a first come first serve basis as per free support policies. As soon as we make some progress towards its resolution, we will inform you. Please be patient and spare us some time.
We are sorry for the inconvenience.
Any Update Mr Ali.
We are afraid that the earlier logged ticket hasn’t been yet resolved. We will surely inform you via this forum thread once we have some certain news about its fix ETA. Please spare us some time.
We are sorry for the inconvenience.
Hello Mr ali
Is there a way to extract images from a PDF and place them in an Excel file while maintaining their original positions relative to the text? If so, is there a solution for this?
You can extract images from PDF independently using the API. It will give you their position as well as dimensions as well that you can use to add them in Excel file. Please note that position of objects in a PDF file may be different than in the Excel file because PDF and Excel file formats are quite different than one another. To add images, in Excel file, you can check Aspose.Cells API.
Hello MR Ali,
My Temporary license was expire i need more to invest to fetch Images and table can you re-new my temporary license for some more time.
You can post a renewal or extension request in our Purchase Forum and they will assist you there accordingly.
I am trying to convert a PDF to Excel, but the file is not being saved and no error is shown. Below is my code. Please check the issue and correct it.
Aspose.Pdf.Document pdf = new Aspose.Pdf.Document(excelPath);
pdf.Pages.Delete(startPage - 1);
ExcelSaveOptions exl = new ExcelSaveOptions
{
Format = ExcelSaveOptions.ExcelFormat.XLSX,
InsertBlankColumnAtFirst = false,
MinimizeTheNumberOfWorksheets = true
};
pdf.Save(excelPath, exl);
pdf.Dispose();