Mathias Kalb wrote:

Thomas DeWeese wrote:

So the cases with different colors are where you use opacity.
In general the differences are 1 code value (I did find one that
was 2 code values off)

During testing I found out that if there is only one svg element which has one opacity attribute (fill-opacity or stroke-opacity) with a value between 0.0 and 1.0, the generated pdf document is incorrect (ALL colors are wrong).

Do you see changes that are greater than 1-2 code values?


   Your SVG content is using 'tspan' elements (although in the given
example you sent you don't need to).  When this happens the PDF
transcoder doesn't try to convert the text as text and falls back
to converting it as paths.  [...]

I changed it but now I can not see the text in the pdf document.

I do this all the time, so example content that fails would probably be useful, otherwise I don't know how to reproduce your problem.

The generated svg, jpeg, png and tiff documents are correct.

OLD :
<text prodato:type="text">
 <tspan x="0.7635741233825682" y="0.45">externer</tspan>
 <tspan x="0.7101886868476867" y="0.8500000059604644">Ausgang</tspan>
</text>

NEW:
<g prodato:type="text">
 <text x="0.7635741233825682" y="0.45">externer</text>
 <text x="0.7101886868476867" y="0.8500000059604644">Ausgang</text>
</g>


Thanks! Mathias Kalb




--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to