Dear inkscape developers,
I have an application, which produce some figures. I have considered using svg (partly to learn), but instead of actually coding the necessary svg strings directly in the source of my application, I would like to employ a somewhat higher level library. I.e. instead of
fprintf(svg_stream , "<path id="%s" fill="%s" ....>\n",id,fill_type);
I would like to do (using a hypothetical svg library):
svg_path(svg_object , id , fill_type);
Now, my question is whether Inkscape has (i.e. is built on) a library which somehow provides this functionality; or if you have another library to recommend which would provide this kind of functionality.
As you can see from the code snippets above my language of choice(?) is C, so it must be something which can be linked from C.
Best Regards
Joakim Hove