Page 1 of 1

xslt graphics for pdf output

Posted: Sun Jun 26, 2011 1:37 pm
by CDickson
hello,

I was looking through the fo samples in Xml editor and came across one called leaders.fo. I'm curios as to how the red 'star' type graphic was created using the code ❋

How are such graphics created and is there any reference documentation for this

Thanks.

C.

Re: xslt graphics for pdf output

Posted: Sun Jun 26, 2011 10:03 pm
by adrian
Hello,

The star is a simple character(❋) from a font with ornaments, Zapf_Dingbats:
http://en.wikipedia.org/wiki/Zapf_Dingbats

Code: Select all

<fo:inline font="16pt ZapfDingbats" color="#E00000">&#x274B;</fo:inline>
Regards,
Adrian