Here's the test code. The text display as times new roman. When I check the
properties/fonts tab of the pdf it only shows Times New Roman as being embedded
in the document.
Here's the code:
<cfdocument
backgroundvisible = "yes"
encryption = "none"
format = "PDF"
filename = "#basePath#/vouchers[#form.Order_ID#].pdf"
fontembed = "yes"
marginbottom = "0.25"
marginleft = "0.25"
marginright = "0.25"
margintop = "0.25"
overwrite="Yes">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title></title>
</head>
<body>
<span style="font-family:Bickham Script Pro Semibold; font-size:42px;">
this text displays as times new roman
</span>
</body>
</html>
</cfdocument>
|