赞
踩
JavaScript实现解析和展示PDF,可以在OpenHarmony设备上呈现PDF文件内容。
使用npm install 安装
npm install @ohos/pdfjs
pdfjs 获取资源文件需要在EntryAbility文件配置全局resourceManager
globalThis.resourceManager = this.context.resourceManager;
globalThis.resourceManager.getRawFile(pdfFilePath, (error, value) => {
if (error != null) {
console.log(error.message);
} else {
this.getPDFDocument(value);
}
})
loadingTask.promise.then((pdf) => {
// 获取第一页pdf数据
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。