gpt4 book ai didi

cordova - 将 PDF 从文件系统加载到 Ionic (Cordova) + Android + pdf.js 应用程序中

转载 作者:行者123 更新时间:2023-12-04 03:20:47 25 4
gpt4 key购买 nike

我无法将 pdf.js 集成到 Android Ionic 应用程序中。我希望 pdf.js 将 pdf 渲染到准备好的 Canvas 上。

当我尝试使用以下方法加载文档时会出现问题:

PDFJS.getDocument(FILE_PATH)

这总是以错误告终。我做了一些研究,在 SO 和互联网上有很多关于将文件加载到 pdf.js 的问题,但是他们讨论从服务器加载 pdf,而不是 file:// urls,或者他们建议对原生 android 代码进行一些更改,我想避免这些更改:如果可能,我正在寻找纯 JS Cordova 解决方案或插件。

我尝试尝试 PDFJS.disableWorker .将此设置为 false 会导致 cannot read property 'length' of null , 设置为 true 会导致加载文件时出错 xhr请求无法加载文件。

我应该在配置文件中设置了所有必要的读取权限。

我的问题是,如果有人成功地使用 pdf.js 将本地( file://.. )pdf 加载到 Cordova 应用程序中,最好使用 JS 或插件,因为如果可能的话,我想扩展到其他平台。

谢谢

最佳答案

正如用户 async5 所指出的,PDFJS.getDocument()接受 3 种不同格式的输入。除了 URL,它还接受 Uint8Array数据。所以需要另外两个步骤来获取所需格式的文件,首先是将文件加载为数组缓冲区,第二步是将其转换为 Uint8Array。以下是 Ionic 的纯 JS 示例,使用 Cordova 文件插件:

$cordovaFile.readAsArrayBuffer(DIRECTORY_URL, FILENAME).then(function(arraybuffer) { //DIRECTORY_URL starts with file://
var uInt8Arr = new Uint8Array(arraybuffer);
PDFJS.getDocument(uInt8Arr).then(function(pdf) {
//do whatever you want with the pdf, for example render it using 'pdf.getPage(page) and page.render() functions
}, function (error) {
console.log("PDFjs error:" + error.message);
});
}, function(error){
console.log("Load array buffer error:" + error.message);
});

这是一个 Cordova 示例,不使用 Ionic
window.resolveLocalFileSystemURI(FILE_URL, function(e){
e.file(function(f){
var reader = new FileReader();
reader.onloadend = function(evt) {
PDFJS.getDocument(new Uint8Array(evt.target.result)).then(function(pdf) {
//do whatever you want with the pdf, for example render it using 'pdf.getPage(page) and page.render() functions
}, function (error) {
console.log("PDFjs error:" + error.message);
});
};
reader.readAsArrayBuffer(f);
});
}, function(e){
console.log("error getting file");
});

关于cordova - 将 PDF 从文件系统加载到 Ionic (Cordova) + Android + pdf.js 应用程序中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34022359/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com