我在Linux中的casperjs中使用子进程,但不起作用?

时间:2019-02-13 02:34:03

标签: casperjs

我在casperjs中使用子进程,但效果不佳

我在casperjs和npt作品的子进程中使用imagemagick命令

  var childProcess;
  try {
    childProcess = require("child_process");
  } catch (e) {
    this.log(e, "error");
  }
  if (childProcess) {
    childProcess.execFile("/bin/bash", ["convert captcha.png          -fuzz 45% -fill white  +opaque red  fuzz.png"], null, function (err, stdout, stderr) {
      this.log("execFileSTDOUT:", JSON.stringify(stdout), 'debug');
      this.log("execFileSTDERR:", JSON.stringify(stderr), 'debug');
    });

  } else {
    this.log("Unable to require child process", "warning");
  }

我希望转换验证码文件 请帮助我

0 个答案:

没有答案