Converting the attached PDF to HTML, causes a semi-transparent watermark, to be rendered opaque.
This overlays the text and makes the document partially unreadable.
I was able to reproduce the problem with latest GroupDocs.Viewer 24.9.
The problem seems to be triggered, by setting WrapImagesInSvg to true.
using (var viewer = new Viewer(documentPath))
{
var options = HtmlViewOptions.ForEmbeddedResources("output_viewer{0}.html");
options.PdfOptions.WrapImagesInSvg = true;
viewer.View(options);
}
Attaching the source PDF and two HTML outputs as a sample:
Watermark overlays text.zip (722.3 KB)
Can you please take a look at this?