Dear Team,
We are using groupdocs viewer for viewing the pdf file but content preview is different from original file. I added sample file, Screen shot of the image and Code changes in the attachments.
Note: The missing text in group docs added as comment using adobe acrobat reader
GroupdocsPDF.zip (174.9 KB)
GroupdocsPDF.zip (175 KB)
@anoop.raphel
Rendering comments are disabled by default. You can enable rendering comments using the following code:
using (Viewer viewer = new Viewer("Doc_TestOverride.pdf"))
{
HtmlViewOptions viewOptions =
HtmlViewOptions.ForEmbeddedResources();
viewOptions.RenderComments = true;
viewer.View(viewOptions);
}
See details in Render text comments section.
Thanks for the quick response.
The solution is working for me.