Hey all,
I'm new to the forum and PHP, so please give me some slack if the answer to this question is so stupidly obvious you want to slap me.
How do you get the cpdf extention to use fonts OTHER then "Time-Roman", "Helvetica", and "Courier".
cpdf_set_font($cpdf, "Helvetica", 7, "WinAnsiEncoding");
The above will change the font to "Helvetica"... how do I get it to use "Arail" or "Arial Blank", etc. The following DOESN'T work and uses the default font (Times-Roman).
cpdf_set_font($cpdf, "Arial", 7, "WinAnsiEncoding");
- Brenton