问题是:如何使用pdf.js获取pdf文件的名称?我正在从节点运行pdf.js示例的变体,我想知道是否有可能得到它。我一直在搜索pdf.js的文档/来源,但找不到任何明显的东西。我正在使用此代码,它(到目前为止)显示了在给定文件夹中找到的每个文件的页数(在这种情况下,是运行此代码的目录):
var fs = require('fs');
var glob = require('glob');
global.window = global;
global.navigator = { userAgent: "node" };
global.PDFJS = {};
global.DOMParser = require('./domparsermock.js').DOMParserMock;
require('../../build/singlefile/build/pdf.combined.js');
glob("**/*.pdf", function (er, files) {
for(var i = 0; i < files.length; i++){
var data = new Uint8Array(fs.readFileSync(files[i]));
PDFJS.getDocument(data).then(function (doc) {
var numPages = doc.numPages;
console.log('Number of Pages: ' + numPages);
console.log();
}).then(function () {
console.log('# End of Document');
}, function (err) {
console.error('Error: ' + err);
});
}
});
我认为文件的名称在doc对象中作为属性或类似的东西,但这似乎不是这种情况,我在文档中找不到任何关于此的内容。在这里我有什么遗漏或做错了吗?
答案 0 :(得分:2)
我修复了它:)代码现在看起来像这样:
var fs = require('fs');
var glob = require('glob');
global.window = global;
global.navigator = { userAgent: "node" };
global.PDFJS = {};
global.DOMParser = require('./domparsermock.js').DOMParserMock;
require('../../build/singlefile/build/pdf.combined.js');
glob("**/*.pdf", function (er, files) {
//this is the essential change: use a forEach() instead of the for loop
files.forEach(function(file){
var data = new Uint8Array(fs.readFileSync(file));
PDFJS.getDocument(data)
.then(function (doc) {
var numPages = doc.numPages;
console.log('File name: ' + file + ', Number of Pages: ' + numPages);
console.log();
});
});
});
希望它对某人有所帮助,并感谢您的快速回复:)