A somewhat updated fork from GraphicsMagick for node
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
486 B

14 years ago
// gm - Copyright Aaron Heckmann <aaron.heckmann+github@gmail.com> (MIT Licensed)
module.exports = gm
14 years ago
function gm(source){
if (!(this instanceof gm))
return new gm(source)
this.source = source || ""
14 years ago
this.data = {}
14 years ago
this._in = []
this._out = []
}
14 years ago
14 years ago
require("./lib/static")
require("./lib/getters")(gm.prototype)
require("./lib/args")(gm.prototype)
require("./lib/drawing")(gm.prototype)
require("./lib/convenience")(gm.prototype)
require("./lib/command")(gm.prototype)