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.
 

36 lines
668 B

var assert = require('assert')
module.exports = function (gm, dir, finish, GM) {
var m = gm
.blur(8, 4)
.stroke("red", 3)
.fill("#ffffffbb")
.drawPolyline([40, 10], [143, 153], [185, 53], [147, 15], [145, 17], [43, 19]);
var args = m.args();
assert.equal('convert', args[0]);
args = args.slice(2);
assert.deepEqual(args, [
'-blur',
'8x4',
'-strokewidth',
3,
'-stroke',
'red',
'-fill',
'#ffffffbb',
'-draw',
'polyline 40,10,143,153,185,53,147,15,145,17,43,19',
'-'
])
if (!GM.integration)
return finish();
m
.write(dir + '/polyline.png', function polyline (err) {
finish(err);
});
}