Please fill out the following template as best you can. .
→
Which product are you using?
PDF.js Express Viewer
PDF.js Express Version
UI version’8.3.2’Core version’8.3.0’Build’My8xNi8yMDIyfDM4YzVkNDMxYQ=='WebViewer ServerfalseFull APIfalse
-
Build : “My8xNi8yMDIyfDM4YzVkNDMxYQ==”
-
Core version : “8.3.0”
-
Full API : false
-
UI version : “8.3.2”
-
WebViewer Server : false
Detailed description of issue
{We are converting content to PDF design and using pdf express viewer with free license key, but still watermark is showing}
Expected behaviour
{Watemark should not be displayed}
Does your issue happen with every document, or just one?
{Everytime}
Link to document
{Not possible but please see screenshot: Screenshot by Lightshot}
Code snippet
{
useEffect(() => {
if (viewerUrl) {
WebViewer(
{
initialDoc: viewerUrl,
licenseKey: ‘HFDPE8hSA29DWNektuPB’,
path: process.env.REACT_APP_API_URL + “/pdfviewer”,
},
viewer
).then(async (instance) => {
const { docViewer } = instance;
docViewer.getDocument(viewerUrl);
});
}
}, [viewer, viewerUrl]);}