xslt graphics for pdf output

Here should go questions about transforming XML with XSLT and FOP.
CDickson
Posts: 6
Joined: Fri Jun 24, 2011 4:56 pm

xslt graphics for pdf output

Post 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.
adrian
Posts: 2879
Joined: Tue May 17, 2005 4:01 pm

Re: xslt graphics for pdf output

Post 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
Adrian Buza
<oXygen/> XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com
Post Reply