I want a converter for svg file which will convert all kinds of shapes for me to path. For instance if I have the following svg:
<svg height="1000" width="1000">
<circle cx="50" cy="50" r="50"/>
<rect width="100" height="100" x="100" y="0"/>
</svg>
I want this code to be converted to this:
<svg height="1000" width="1000">
<path d="M0,50a50,50 0 1,0 100,0a50,50 0 1,0-100,0"/>
<path d="M100,0L200,0 200,100 100,100z"/>
</svg>