Convert Special Characters to PDF

From SmartWiki
Jump to: navigation, search

When a Web Page View is converted from HTML to PDF certain special characters may not be converted correctly.

Most western Latin Unicode characters will be displayed normally. If your PDF will contain non-Latin characters such as Japanese, Korean or Greek, then the PDF writer must be told to use TTF (True Type Font) and the font should be specified. The font must be one that can render the characters correctly. You must also tell the PDF writer to use True Type Font by including the following anywhere with the Web Page View:

  • <!--Use TTF-->

For example, to display Japanese characters properly, do the following:

  1. Put this <!--Use TTF--> somewhere within the web page view
  2. Put this <font face="VAL Gothic Regular"> or <font face="Bitstream Cyberbit"> in front of the text that will contain the special/non-Latin characters.
  • Alternately you can define the font within a <style> tag for each element. For example:
<style>
<!--@sslogic("@me.langid@" in (7,15))-->
body,div,span,p,table,tr,th,td,a{
   font-family: "Bitstream Cyberbit",'Arial',Verdana, Arial, 'MS Sans Serif', sans-serif;
   font-weight:normal;
}
<!--@end-->
</style>

Note: Many fonts such as Japanese and Korean do not fully support bold text. Accordingly, using "<b>" or "<strong>" tags, or style="font-weight:bold or 200 etc. (or CSS entries) may result in garbled output. Thus, in the <style> example above, the font-weight is defined as normal. Note that any in-line styles in the Web Page View (i.e. <span style="font-face:Arial">) will override the styles defined in the style tag.


See Also