I'm trying to create a pdf with a barcode using CFDocument. (Barcode font is loaded. Can see it in the CF admin.) Found a boat load of folks complaining about the font not being recognized, but no solutions anywhere.
CFDocument (CF9) Anyone successfully using "FREE3OF9.TTF " (Barcode font)?
1.9k Views Asked by Kerrie At
2
There are 2 best solutions below
1

Add the font in your server control panel (windows). Add the font in CF admin Font management (Under server settings). Restart server (Note: don't skip the restarting of server or it will not work). Below is a working sample code of 'Free 3 of 9 extended'
<cfdocument format="pdf" filename="#expandpath('.')#\barcode.pdf" pagetype="letter" overwrite="yes"
backgroundvisible="yes" margintop=".33" marginright=".33" marginbottom=".33"
marginleft=".33" fontembed="yes">
<p style="font-family:Free 3 of 9 extended;font-size:75px;">
content here
</p></cfdocument>
OK, for anyone else having this issue, here is what I did:
( from http://www.mail-archive.com/[email protected]/msg290047.html )
CF has the font listed as "free 3 of 9" (with spaces). Make sure to embed the font in cfdocument!