我有这个代码:
var convert = spawn("gm", ["convert"].concat(parameters));
// output stream
obj.outStream = new BufferList();
convert.stderr.pipe(process.stderr, { end: false });
// put the output in the stream TOO
convert.stdout.pipe(obj.outStream);
// send the image to the input
obj.stream.pipe(throttle).pipe(convert.stdin);
如何抑制“转换”过程的输出,而不抑制 obj.outStream 的输入和输出?
原因是我不想像现在那样将它输出给用户。