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.
 

19 lines
640 B

var assert = require('assert')
module.exports = function (_, dir, finish, gm) {
var svg_file;
svg_file = new Buffer('<svg viewBox="0 0 20 17" style="background-color:#ffffff00" xmlns="http://www.w3.org/2000/svg" width="20" height="17"><g fill="#656C72"><path d="M0 0h20v3h-20zM0 7h20v3h-20zM0 14h20v3h-20z"/></g></svg>', 'ascii');
// The following invocation should fail, because 'convert'
// has no way of interpreting the file.
gm(
svg_file
).options({
imageMagick: true
}).setFormat('png').toBuffer(function(err, buffer) {
assert.ok(err, "Expecting error on this buffer");
});
return finish();
}