Platforms to show: All Mac Windows Linux Cross-Platform

FAQ.How to get fonts to load in DynaPDF on Linux?

Answer: Please use the AddFontSearchPath method in the DynaPDFMBS class to specify where your fonts are.
Example
dim d as new DynaPDFMBS
if TargetLinux then
call d.AddFontSearchPath "/usr/share/fonts/truetype", true
else
// on Mac and Windows we use system fonts.
end if

On Mac OS X and Windows, the fonts are loaded from the system's font folder.


e.g. if you use ubuntu, you can install the ttf-mscorefonts-installer package and call this method with "/usr/share/fonts/truetype/msttcorefonts" as the path. No backslash on the end of a path, please.


The biggest plugin in space...