I have used the addTTFfont() method within the latest version of tcpdf (5.9.134) to convert the Arial font. However it does not print the British pound sign (£) and appears as though it skipped converting this character. All it prints is a blank box where the character should be.
Does anyone know if it's possible to list custom characters for the font conversion to include?
Thanks
WORKAROUND:
When I used this site to convert my fonts, the £ signs appeared correctly:
http://www.xml-convert.com/en/convert-tff-font-to-afm-pfa-fpdf-tcpdf
I can only imagine then that I am not converting the fonts properly using the addTTFfont method. Anyway, for now I'm happy as the £ signs are appearing.
£sign. What is the right character code for that font for the£sign? – hakre Nov 9 '11 at 11:29U+00A3is the unicode-codepoint which represents that character, yes. So how do you tell TCPDF which character(s) it should use? Is there some specification how you need to encode them for example? Charset encoding always plays a role if you pass a string. – hakre Nov 9 '11 at 12:08