5

我想获取一个 SVG 字符串并将 PNG 输出到浏览器。我看了几个帖子:

我可以输出 png 但不能输出 svg。我可以将 svg 写入文件就好了 - 只是不能流式传输它。

这是我所拥有的:

var gm = require('gm');
var im = gm.subClass({ imageMagick: true });

var inputsvg = 'public/test.svg';
var inputpng = 'public/test.png';

// works
im(inputsvg).write(output, function(err){
  if (!err) console.log('image converted.');
});

// works
im(inputpng).write(output, function(err){
  if (!err) console.log('image converted.');
});


res.set('Content-Type', 'image/png'); 

// works
im(inputpng).stream(function (err, stdout, stderr) {
  stdout.pipe(res);
});

// does not work - no errors given.
im(inputsvg).stream(function (err, stdout, stderr) {
  stdout.pipe(res);
});
4

1 回答 1

9

好,知道了。

var svg = '<?xml version="1.0" encoding="UTF-8" standalone="yes"?><svg width="840" height="430"  xmlns="http://www.w3.org/2000/svg" version="1.1"><rect width="300" height="100" style="fill:rgb(0,0,255);stroke-width:1;stroke:rgb(0,0,0)" /></svg>';

var buf = new Buffer(svg);
res.set('Content-Type', 'image/png');
gm(buf, 'svg.svg').stream('png', function (err, stdout, stderr) {
  stdout.pipe(res);
});

一些重要的点:

  • xml 行必须在那里
  • 必须在 svg 标签中提供宽度和高度
  • stream() 函数需要格式参数('png')

希望对某人有所帮助。

于 2013-04-08T22:34:06.190 回答