I'm going over the code and doing some additions to the SVG plugin (wpc_svg).
So far I've added support for the H, V, S, Q, and T path commands, as well as the relative version of those commands, as sometimes those commands can be used by a drawing program when it saves to SVG. Here's an example file:
Things are still a WIP at the moment.
So far I've added support for the H, V, S, Q, and T path commands, as well as the relative version of those commands, as sometimes those commands can be used by a drawing program when it saves to SVG. Here's an example file:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<svg width="500" height="500" viewBox="0 0 400 400" version="1.1">
<path style="fill:gray" d="M 10 80 q 42.5 -70 85 0 t 85 0 t 85 20 t 85 10 v 90 H 10 z"/>
</svg>
Things are still a WIP at the moment.