merlin
merlin copied to clipboard
C++ Bindings to GraphicsMagick for NodeJS.
Should be checking params and returning exceptions when things fail.
For neat people who just want to use this as a manipulation library and not be tied to a db, having the ability to just manipulate images would be handy....
With this simple script: ``` var merlin = require("merlin"); var fs = require("fs"); fs.readFile("test/fixtures/matador.jpg", function(err, data) { var img = new merlin.MerlinImage(data); var newImg = img.resize(200, 200); }) ``` I...