I'm using a radialGradient in my svg :
<text xml:space="preserve" text-anchor="right" font-family="Guia Script" font-size="20" y="24.4666" x="275.666" stroke-width="0" stroke="#000000" fill="url(#svg_5)" id="svg_4">............</text>
[...]
<defs>
<radialGradient id="svg_5" cx="0.988281" cy="0.5" r="0.5" fx="0.988281" fy="0.5">
<stop offset="0" stop-color="#000000"/>
<stop offset="1" stop-color="#e5e5e5"/>
</radialGradient>
</defs>
Now, something weird happened when I'm exporting my svg from inkscape (I'm using inkscape in command-line from a .net application)
The gradient render is ok in inkscape, it's ok in the PNG, but not in the PDF, where there is no gradient at all applied :
Here you can see the render in SVG - PNG - PDF and see what the problem is :

The only "solution" I find is to trick the system by exporting my SVG in PNG and then creating a PDF with the PNG using iText, but that's not very clean...
Is there any other solution ?
Thx