I try to embed multiple levels (iteration) of SVG with each other. The result is that the nodes get smaller and smaller, even though they have the same font and it works when using i.e. PNG. How to make it work with SVG? The problem is: I want the meta-data that SVG embed.
The Python code returns the name of the last SVG
def create_children ( node, dir ):
G = Graph ( layout="dot" )
G.add_node ( str ( node ), label=text_to_html ( nodes [ node ][ "text" ] ), **nodeoptions )
if "children" in nodes [ node ]:
children = nodes [ node ][ "children" ]
for child in children:
name = create_children ( child, dir )
label = '<'
label += '<table border="0" cellborder="0" cellspacing="0">'
label += '<tr><td><IMG SRC="' + name + '"/></td></tr>'
label += '</table>'
label += '>'
G.add_node ( str ( child ), label=label, **{ **nodeoptions, "shape": "none" } )
G.add_edge ( str ( node ), str ( child ) )
G.layout ()
data = G.draw ( format="svg" )
print ( "svg", node, data )
name = os.path.join ( dir, str ( node ) + "_ret.svg" )
with open ( name, "wb" ) as f:
f.write ( data )
f.close ()
return name