以SVG格式输出

时间:2017-01-03 14:40:15

标签: c++ svg

有没有人有如何以SVG格式输出的例子?我在电路板上进行了搜索,并没有得到任何回报。

我的输出比赛号码。

我想在页面中间写一串数字,比如1,2,3。

1 个答案:

答案 0 :(得分:0)

如评论中所述,只需在某些I / O流中输出您需要的svg代码:

int main()
{
    int a = 5;
    std::cout << "<svg xmlns=\"http://www.w3.org/2000/svg\" width='100' height='100'>\n";
    std::cout << "<text x='10' y='20'>" << a << "</text>\n";
    std::cout << "</svg>\n";
}

然后编译:

$ g++ a.cpp

并运行:

$ a.out > myfile.svg