Quiero un convertidor para archivos svg que convierta todo tipo de formas para mí en la ruta. Por ejemplo, si tengo el siguiente svg:
<svg height="1000" width="1000"> <circle cx="50" cy="50" r="50"/> <rect width="100" height="100" x="100" y="0"/> </svg>Quiero que este código se convierta en esto:
<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>