pdfjs 展示电子签章及中文丢失解决方案
展示电子签章
修改pdfjs-dist/build/pdf.work.js的源码,全局搜索AnnotationFlag.HIDDEN:
if(data.fieldType==='Sig') {
warn('unimplemented annotation type: Widget signature');
// 注释下面这行代码
this.setFlags(AnnotationFlag.HIDDEN);
}
中文丢失
复制node_modu...