我在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");
}
我希望转换验证码文件 请帮助我