Last active
July 21, 2017 11:18
-
-
Save zoetrope69/b6a32c48efa3a6f5e26738e7c1339f47 to your computer and use it in GitHub Desktop.
GM Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const gm = require('gm'); | |
gm('/path/to/inputFile.png') | |
.monochrome() | |
.write('/path/to/outputFile.png', () => { | |
// Image created | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment