merlin icon indicating copy to clipboard operation
merlin copied to clipboard

C++ Bindings to GraphicsMagick for NodeJS.

Results 3 merlin issues
Sort by recently updated
recently updated
newest added

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...