Hi,
I am using Aspose version 22.1.0 for pdf to docx conversion and its placing few image based pdf files in temp folder and consuming server storage. It places few files not all, but the behavior is same that all the files are image based Pdfs.
There is no line of code that writes file neither any file saving option.
I’m using this code:
var saveOptions = new DocSaveOptions();
var callback = new HandleDocumentWarnings();
saveOptions.WarningHandler = callback;
saveOptions.Format = DocSaveOptions.DocFormat.DocX;
saveOptions.RecognizeBullets = true;
var streamResult = new MemoryStream();
using (var document = new Document(streamSource))
{
document.Save(streamResult, saveOptions);
}
file has also been attached for reference : https://drive.google.com/file/d/1VnoxOzQCBN5it1GuLjY3q211K57IXdyn/view?usp=sharing