1

更新:

似乎是 wkhtmltopdf 没有正确退出的问题


我在节点中执行以下操作:

console.log("before");
fs.writeFile(html_filename, html, function (err) {
  if (err) {res.writeHead(400); res.end("" + err); return;}

  console.log("wrote html fine; now converting");
  exec('wkhtmltopdf ' + html_filename + ' ' + pdf_filename, function (err, stdout, stderr) {
    if (err) {res.writeHead(400); res.end("" + err); return;}

    console.log("converted; now reading");
    fs.readFile(pdf_filename, function (err, data) {
      if (err) {res.writeHead(400); res.end("" + err); return;}

      console.log("read fine; now serving");
      res.writeHead(200, {"content-type" : "application/pdf"});
      res.end(data);
    });
  });
});

这工作正常,除了每次执行时,节点程序都会挂起,当我 cmd + tab 时,我看到一个“exec”进程。当我选择此过程时,节点程序会继续。

任何想法为什么?

4

2 回答 2

4

作为 wkhtmltopdf 的替代品,我会使用 Phantom.js:http ://phantomjs.org/

您可以创建一个简单的光栅化脚本:

var page = require('webpage').create(),
address, output, size;

if (phantom.args.length < 2 || phantom.args.length > 3) {
    console.log('Usage: rasterize.js URL filename');
    phantom.exit();
} else {
    address = phantom.args[0];
    output = phantom.args[1];
    page.viewportSize = { width: 600, height: 600 };
    page.open(address, function (status) {
        if (status !== 'success') {
            console.log('Unable to load the address!');
        } else {
            window.setTimeout(function () {
                page.render(output);
                phantom.exit();
            }, 200);
        }
    });
}

然后调用:

phantomjs rasterize.js http://path/to/webpage output.pdf
于 2012-08-01T01:19:25.270 回答
0

嗯,这看起来像一个 osx 错误...

于 2012-07-31T23:16:18.680 回答