pdfjs实现pdf预览

pdfjs官网

http://mozilla.github.io/pdf.js/

Demo

示例效果

主要代码

//用 promise 获取页面
PDFJS.getDocument(fileURL).then(function (pdf) {
});

// 获取i页的页面
pdf.getPage(i).then(function (page) {
})

// 识别pdf中文本
page.getTextContent().then(function(textContent) {
    for(let j = 0; j < textContent.items.length; j++) {
        // textContent.items[j].str为识别到的文本字符串
    }
});

// 渲染pdf
var renderTask = page.render(renderContext);
renderTask.promise.then(function() {
    // 渲染完成
});

若字体未显示或者乱码,检查是否设置cMapUrl

PDFJS.cMapUrl = '/assets/pdfjs/cmaps/';
PDFJS.cMapPacked = true;

注意:

如果未加载成功,检查一下pdf路径是否正确,是否在同一域名下,
例如报错:
![在这里插入图片描述](https://img-blog.csdnimg.cn/20210319161134111.p
可本地安装服务器进行测试,也可使用vscode的Live Server插件(index.html上点击右键选择Open with Live Server自动打开浏览器)

完整代码

完整代码链接

你可能感兴趣的:(插件,pdf,pdf预览,pdfjs)