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.

link|improve this question

Does the blank box has a border? – hakre Nov 9 '11 at 11:24
@hakre yes it does – SammyBlackBaron Nov 9 '11 at 11:26
You're using the wrong character to make that font display the £ sign. What is the right character code for that font for the £ sign? – hakre Nov 9 '11 at 11:29
@hakre I'm not sure if this is what you mean, but when I use windows character map it shows U+00A3 or 0163 for that symbol. Is that the character code you are talking about? – SammyBlackBaron Nov 9 '11 at 11:32
U+00A3 is 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
feedback

2 Answers

up vote 1 down vote accepted

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.

link|improve this answer
feedback

Not sure if it will help you but I recall we had a similar problem with pdfLib and the problem was that it would not render "£" sign if it was in UTF-8. We had to store pound sign ASCII value to send to pdfLib.

Possibly totally unrelated but I thought it may give you something to think about.

link|improve this answer
thanks, good suggestion but it didn't work :( – SammyBlackBaron Nov 9 '11 at 11:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.