I have successfully added the font Arial to TCPDF, however the filesize is large due to it embedding the font. I would have thought Arial was a standard font on the vast majority of users machines, so is there a way of it working by using Arial if available, then Helvetica if not, then any sans-serif font as a backup?

link|improve this question

The font isn't that big! How small do you want this PDF to be? I believe there is a way in PDF to only include the glyphs you are using, but I'm not sure how to do that in TCPDF. – Brad Nov 10 '11 at 14:38
It did make the pdf much bigger by percentage - 500KB for Helvetica to 2.5MB-4MB for Arial depending on what glyphs I include. – SammyBlackBaron Nov 11 '11 at 10:33
feedback

2 Answers

You can subset the font, which embeds only the glyphs that are actually used in your document. That'll save some space as Arial has glyphs for a very very large swath of the Unicode character space.

it's the last argument in the setFont() call (scroll to the bottom of the page).

link|improve this answer
Thanks - that did help it get down from 4MB to 2.5MB for the PDF, but that's still much larger than the 500KB for Helvetica, which is a similar, but core, font. – SammyBlackBaron Nov 11 '11 at 10:35
feedback
up vote 0 down vote accepted

I found that if I remove all arial files in the fonts folder other than the ones ending in .php, the filesize drops to around 500KB, just like the other core fonts in tcpdf. I would imagine that this means they are now not embedded and will revert to another sans-serif font on the users machine if they don't have arial.

link|improve this answer
You can verify this in the properties dialog within Acrobat Reader. – Brad Nov 11 '11 at 14:12
feedback

Your Answer

 
or
required, but never shown

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