我正在使用PDF.js(https://github.com/mozilla/pdf.js/tree/master/examples/svgviewer)在我的Web应用程序中构建PDF查看器。 PDF可以正常显示,但是文本字体没有显示,我被卡住了。
我猜测可能是由于cMapUrl错误?我正在使用此URL https://unpkg.com/pdfjs-dist@2.0.943/cmaps
这是代码的一部分:
pdfJS.getDocument({
url: 'www.mysite.com/my-file.pdf,
cMapUrl: 'https://unpkg.com/pdfjs-dist@2.0.943/cmaps/',
cMapPacked: true,
});