Skip to content

Commit

Permalink
moving to graphicsmagick, and it's much faster
Browse files Browse the repository at this point in the history
  • Loading branch information
quiiver committed Mar 9, 2010
1 parent 0aa8783 commit 792f836
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion magickal.js
Expand Up @@ -12,7 +12,9 @@
},

__run : function (cmd, args, callback) {
sys.puts("running command: " + cmd + " - " + args.join(" "));
args.unshift(cmd);
cmd = "gm";
sys.puts("running command: " + cmd + " " + args.join(" "));
if (this.available > 0) {
this.available -= 1
var p = process.createChildProcess(cmd, args);
Expand Down

0 comments on commit 792f836

Please sign in to comment.