Skip to content

Instantly share code, notes, and snippets.

@astagi
Created December 23, 2013 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save astagi/8100909 to your computer and use it in GitHub Desktop.
Save astagi/8100909 to your computer and use it in GitHub Desktop.
Resize images 200x200 centered
im.resize({
srcPath: src ,
dstPath: dst,
width: 200,
height: "200^",
customArgs: [
"-gravity", "center",
"-extent", "200x200"
]
}, function(err, stdout, stderr) {
});*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment