我想使用imagemagick从URL包含pdf(不是pdf文件(获得的缓冲区转换pdf文件,所以我不必先保存pdf并运行imagemagick(。我使用 node-imagemagick,在文档中只是显示带有如下文件路径的 convert(( 方法:(小猫.jpg(
im.convert(['kittens.jpg', '-resize', '25x120', 'kittens-small.jpg'],
function(err, stdout){
if (err) throw err;
console.log('stdout:', stdout);
});
但是,如果我想使用缓冲区,我该怎么做?这是我的代码
request.get({ url: 'url to pdf', encoding: null }, (err, resp, body) => {
im.convert([body, '-resize', '25x120', 'kittens-small.jpg'],
function(err, stdout){
if (err) throw err;
console.log('stdout:', stdout);
});
})
你可以查看node-imagemagik的源代码:链接到代码。
Node-imagemagik 是 convert
工具的包装器。
转换函数定义如下
exports.convert = function(args, timeout, callback) {
var procopt = {encoding: 'binary'};
if (typeof timeout === 'function') {
callback = timeout;
timeout = 0;
} else if (typeof timeout !== 'number') {
timeout = 0;
}
if (timeout && (timeout = parseInt(timeout)) > 0 && !isNaN(timeout))
procopt.timeout = timeout;
return exec2(exports.convert.path, args, procopt, callback);
}
exports.convert.path = 'convert';
它假设您给出与命令行中相同的参数,即源图像路径。但是,convert
支持来自 stdin(标准(的输入,这就是将 pdf 数据馈送到流程中的方式。
在源代码中,有一个有用的示例。调整大小函数的定义,接受二进制数据并使用适当的参数将其馈送到转换函数中。
var resizeCall = function(t, callback) {
var proc = exports.convert(t.args, t.opt.timeout, callback);
if (t.opt.srcPath.match(/-$/)) {
if ('string' === typeof t.opt.srcData) {
proc.stdin.setEncoding('binary');
proc.stdin.write(t.opt.srcData, 'binary');
proc.stdin.end();
} else {
proc.stdin.end(t.opt.srcData);
}
}
return proc;
}
exports.resize = function(options, callback) {
var t = exports.resizeArgs(options);
return resizeCall(t, callback)
}
对 convert
的调用将输入文件名替换为"-"。终端的等效用法如下所示:
my_process_that_outputs_pdf | convert - <convertion options here...> my_output.png