Skip to content

Instantly share code, notes, and snippets.

@abinavseelan
Created August 24, 2017 09:09
Show Gist options
  • Save abinavseelan/481e5d1459b8ea41d7787d5e2911a603 to your computer and use it in GitHub Desktop.
Save abinavseelan/481e5d1459b8ea41d7787d5e2911a603 to your computer and use it in GitHub Desktop.
Medium - Image Manipulation using NodeJS - Cropping
const gm = require('gm');
const width = 300;
const height = 400;
gm('/path/to/image/file')
.crop(width, height)
.write('/path/to/output', (err) => {
if (err) {
console.log(err);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment