Hi,
I tried to edit / convert a certain PDF file as HTML, but the resulting file is missing a lot of information.
I was using the attached file as input and GroupDocs.Editor 24.8.
Aspose Sample (Word).pdf (940.4 KB)
The following code was used:
string documentPath = "Aspose Sample (Word).pdf";
using (var editor = new Editor(documentPath))
{
var opts = new PdfEditOptions();
using (var doc = editor.Edit(opts))
{
doc.Save("edit.html");
}
}
It seems, that it somehow stopped at “Subtitle #2” and completely skipped “Subtitle #3” and "Subtitle #4.
I did set the GroupDocs.Total license file, so I think it should edit everything.
Can you please take a look?