Hi,
i am using AsposeDocx to Convert the Annotated PDF document to Docx, the issue is that Annotation hides the actual text that is Annotated in PDF File.
I have attached the both input.pdf file as well output.docx file.
The following is my code snippet to convert annotated pdf to docx
var Options = new DocSaveOptions();
Options.WarningHandler = callback;
Options.Format = DocSaveOptions.DocFormat.DocX;
Options.RecognizeBullets = true;
var streamResult = new MemoryStream();
using ( var document = new Document(streamSource))
{
document.Save(streamResult, Options);
}
Can you please guide how make it correct Annotated document.
input.pdf (244.5 KB)
output (2).docx (96.1 KB)
Thanks