Node.js GraphicsMagic:检查安装&功能

时间:2013-06-07 05:12:43

标签: node.js graphicsmagick

我正在使用Node.js模块gm Github)来GraphicsMagicLink)。

如何确定是否安装了GraphicsMagic模块所需的gm软件&当前node.js机器上是否具有完整功能? (我想在我的服务器的初始化过程中检查这个)

1 个答案:

答案 0 :(得分:7)

您可以调用命令行工具并检查输出。

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

exec("gm", function (error, stdout, stderr) {
  // Validate the output with one of the parameters.
});