SVG export with attributes described as SVG, not as inline styles
Many softwares cannot properly import SVG files with SVG inline styles (such as transform for instance).
Would it be possible to avoid inline styles with the SVG export?
How would you like the style to be declared? Could you provide a sample SVG XML text?
Here is an extract from an SVG export with Vectorpea, with inline SVG styles:
<text id="Oui, tout à fait 13 %" style="transform: matrix(1,0,0,1,1143,495.141)" >
<tspan x="6" y="13.5" class="t5">Oui, tout à fait</tspan><tspan y="13.5" class="t6">
</tspan>
A better version, more suitable for import in powerpoint for instance would be:
<text id="Oui, tout à fait 13 %" transform="matrix(1 0 0 1 1143 495.141)">
<tspan x="6" y="13.5" class="t5">Oui, tout à fait</tspan><tspan y="13.5" class="t6"></tspan>
</text>
Are you sure that Powerpoint can handle the second case, but can not handle the first case?
Yes indeed, i asked ChatGPT to clean the vectorpea export, and the cleaned version is properly imported in Powerpoint.
Here are both files:
It can also be checked with Inkscape where you can import svg files