Hello,
inkscape input.svg --export-eps=output.eps
Usually that works beautifully for me, even does fonts right when the svg references fonts.
However it seems that when a path has a pattern fill, inkscape doesn't apply it. It does with rect but not with path.
Is there a fix? e.g. something I can do in the SVG that makes it easier for inkscape to add pattern on export?
The SVG is hand coded, not created by inkscape. Pattern fill shows when rendered by FireFox.
To expand, here is the pattern definition:
<pattern id="squiggle" patternUnits="userSpaceOnUse" width="10" height="10" patternTransform="rotate(119)">
<path fill="none" stroke="cyan" stroke-opacity="1" stroke-width="3" d="m 0,5 c 3.333333,4 6.666667,-4 10,0"/>
</pattern>
In FireFox that works as fill for both rect and path nodes but when exporting to eps via command-line only the rect nodes get the pattern applied.