Hi, I’m trying to convert pdf file to excel format, Pdf file has images in it. after conversion nothing is inside the excel file.
So i have attached the problematic pdf file for you reference.
.Net i’m facing problem
Version of Conversion dll will be - 20.12.0.0
Four Dashboards_11_25_20 (1).Pdf (465.5 KB)
Four Dashboards_11_25_20.pdf (280.8 KB)
The code will be
using (Converter converter = new Converter(completeFilePath))
{
var options = new SpreadsheetConvertOptions();
converter.Convert(() => new MemoryStream(), convertedStream => convertedStream.CopyTo(memoryStream), options);
extension = “.xlsx”;
}