You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.MD
+27-1Lines changed: 27 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -298,6 +298,32 @@ public IActionResult GetMyPdf()
298
298
}
299
299
```
300
300
301
+
## E-Signature Support
302
+
Original issue -> PDF.JS is not able to load the signature in the pdf if that is done via the any **E-Signature** tool.
303
+
304
+
Resolution of the issue -> To support this feature need to comment/remove the below code from pdf.worker.js file and file path i.e. lib\pdfjs\build\pdf.worker.js
305
+
306
+
**Original issue code**
307
+
308
+
```javascript
309
+
if (data.fieldType === 'Sig') {
310
+
data.fieldValue=null;
311
+
312
+
_this3.setFlags(_util.AnnotationFlag.HIDDEN);
313
+
}
314
+
```
315
+
316
+
**Resoultion code**
317
+
318
+
```javascript
319
+
if (data.fieldType === 'Sig') {
320
+
data.fieldValue=null;
321
+
322
+
_this3.setFlags(_util.AnnotationFlag.HIDDEN); //remove or comment this line
323
+
}
324
+
```
325
+
326
+
301
327
## Stack Overflow Support
302
328
Have a question? Ask questions and find answers on Stack overflow.
0 commit comments