Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

If you’ll find that some of asian (ie.: Japanese) characters are not rendered correctly in PDF output (ie,: appear as squares), this is likely caused by using font that does not support those characters. To fix this, install additional fonts to your HostBill PDF render engine.

To do so:

  1. Download zip file above

  2. Unzip its contents in hbf/libs/mpdf/ttfonts directory of your HostBill install

  3. In your Document templates set new font to be used in document body, replace font-family at top of document (invoice) template html code from Arial to Garuda


So from:

  1. <style type="text/css">
        body {
            font-family: Arial;
        }
    </style>

to:

<style type="text/css">
    body {
        font-family: Garuda;
    }
</style>
  • No labels