在客户端的JavaScript / jquery中将pdf文件转换为html文件?

时间:2016-05-25 15:32:59

标签: javascript jquery html pdf

有没有办法使用JavaScript或jquery将pdf文件转换为html文件?这可以在客户端完成并在本地运行吗?

到目前为止,我只找到了像pdf2htmlEX

这样的服务器端解决方案

也许有图书馆?

2 个答案:

答案 0 :(得分:2)

我认为只在nodejs中。你可以运行

npm install pdftohtmljs

然后在您的服务器代码中:

var pdftohtml = require('pdftohtmljs');
var converter = new pdftohtml('file.pdf', "file.html");

// see https://github.com/fagbokforlaget/pdftohtmljs/blob/master/lib/presets/ipad.js 
converter.convert('ipad').then(function() {
  console.log("converted");
}).catch(function(err) {
  console.log(err);
});

或者,使用易于在命令行中使用的this software

答案 1 :(得分:0)

我怀疑此时此刻是否可行。也许Mozilla的PDF.js可以让你朝着正确的方向前进:

  

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

和github repo

  

https://github.com/mozilla/pdf.js