DynaPDF table text problem

I am working on database application which make PDF file with tables using DynaPDF. When I build it and host it on my local server (Windows 7) everything is ok like on the first picture.

But when I upload same application builded for Linux on Unbuntu VPS, there is a problem with writing text in table cells and it looks like on the second picture.

I am using Arial font with unicode8 encoding

Is anybody has solution for this problem?

Did you tell DynaPDF where to find the folder with font files?
e.g.

if TargetLinux then call d.AddFontSearchPath "/usr/share/fonts/truetype", true else // on Mac and Windows we use system fonts. end if

Thats it! Thank you!