Created
October 31, 2012 03:32
-
-
Save edwardhotchkiss/3984636 to your computer and use it in GitHub Desktop.
Use GM Module (Graphics Magick) for Node.js to center an image on a white background canvas
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
var gm = require('gm'); | |
var canvasWidth = 248; | |
var canvasHeight = 389; | |
gm(__dirname + '/original.jpg').size(function(error, size) { | |
if (error) { | |
console.error(error); | |
} else { | |
// current image size | |
var imageWidth = size.width; | |
var imageHeight = size.height; | |
// center placement | |
var x = (canvasWidth / 2) - (imageWidth / 2); | |
var y = (canvasHeight / 2) - (imageHeight / 2); | |
console.log(x, y); | |
this.background('#ffffff') | |
.resize(imageWidth, imageHeight) | |
.gravity('Center') | |
.extent(canvasWidth, canvasHeight) | |
.write(__dirname + '/test.jpg', function(error) { | |
if (error) { | |
console.error(error); | |
} else { | |
console.log(this.outname); | |
}; | |
}) | |
} | |
}); |
Sorry if this is a stupid question, but what is the point of calculating x
and y
?
@btleffler Not needed in this example because .gravity('center')
does the work.
Thk!
Thanks a lot!
Thanks! this was really helpful!!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Really thanks man. It helped me a lot