Jessica Perry Hekman wrote:
>  <fo:block font-size="14pt" font-family="Symbol">
>       Symbol 12345
>   </fo:block>
>   <fo:block font-size="14pt" font-family="ZapfDingbats">
>       ZapfDingbats: ahijk '"\] 12345
>   </fo:block>
> 
> In the PDF generated by FOP, I see:
> 
>   ###### 12345
> 
> and then a bunch of images of scissors for the ZapfDingbats text.
> 
> Surely that can't be right; I expected to see more varied Dingbats :) Am I 
> doing something wrong? Is this really the expected output for those fonts?

The scissors appears to be what ZapfDingbats displays for
the default unmapped character. You have to use proper
Unicode codepoints for the characters you want to see, for
example, try
  <fo:block font-size="14pt" font-family="ZapfDingbats">
   &#x27AF;
  </fo:block>

You can find the Unicode code points for the characters
in the ZapfDingbats font in the FOP soure distribution
in src/codegen/charlist.xml, all the mappings with
adobe-name="aNNN" with some NNN number.

J.Pietschmann



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

Reply via email to