PDF到Node JS上的图像

Mar*_*yen 5 javascript pdf node.js

任何人都知道NodeJS的任何好的库,甚至是用PDF创建图像的API?

mal*_*tjo 2

我认为解决方案应该使用像 Ghostscript 这样的外部程序来构建你的 jpg。

var exec = require('child_process').exec;

exec('gs -dNOPAUSE -sDEVICE=jpeg -r144 -sOutputFile=p%03d.jpg file.pdf' , function(err) {
    if (err) {
        // something went wrong
    } else {
       // everything went good do something after the process is completed
    }
});
Run Code Online (Sandbox Code Playgroud)