> AW> Actually I have noticed that none of my text seems to come out
> AW> correctly after conversion to png.
> 
>   Are you using @Font-Face?
> 
>   I don't think Batik supports this.
> 
>   If so, I think you need to switch to the font-family, etc
> properties.

I was using font-family, here is the SVG:

<?xml version="1.0"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd";>

<svg width="104" height="320" viewBox="0 10 104 320">
<title>Text</title>
<desc>text test</desc>

<defs>
 <linearGradient id="two_huesy" x1="0%" y1="0%" x2="0" y2="100%">
    <stop offset="0%" style="stop-color: black;"/>
    <stop offset="2%" style="stop-color: black;"/>
    <stop offset="100%" style="stop-color: #000099;"/>
 </linearGradient>
 <filter id="drop-shadow">
    <feGaussianBlur in="SourceAlpha" stdDeviation="2" result="blur"/>
    <feOffset in="blur" dx="4" dy="4" result="offsetBlur"/>
    <feMerge>
       <feMergeNode in="offsetBlur"/>
       <feMergeNode in="SourceGraphic"/>
    </feMerge>
 </filter>
</defs>


<path d="M 0 0 V 266 A 50 50 0 1 0 100 266 V 0 Z" style="fill:
url(#two_huesy);" filter="url(#drop-shadow)"/>
<text x="12" y="70" style="font-family: times;text-anchor: start; fill:
white; font-style: italic; font-size: 12; font-weight: bold">Overview</text>



-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.


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

Reply via email to