我正在使用<cfdocumentitem type="footer">
在PDF文檔中創建頁腳,它工作正常。除了我似乎無法控制字體。我試過<span>
,<font face>
等沒有運氣。目前我正在嘗試與類如下表。CFDocumentItem - 更改字體大小
任何人都知道如何控制<cfdocumentitem>
在頁腳中的字體外觀?
<cfdocument format="pdf"
marginBottom = ".5"
marginLeft = ".4"
marginRight = ".4"
marginTop = ".2"
>
<style type="text/css">@import "pdf.css";</style>
<cfdocumentitem type="footer">
<cfoutput>
<table width=100%>
<tr>
<td class=verd10>
<b>#pdfstuff.pdffinal#</b>
</td>
<td align=right class=verd10 valign=top>
Page #cfdocument.currentPageNumber# of #cfdocument.currentPageNumber#
</td>
</tr>
</table>
</cfoutput>
</cfdocumentitem>
pdf document data etc
</cfdocument>
在@import中拉動效果會更好一點...獲取我想要的字體面,但不是大小...奇怪的東西 - 我可以在普通PDF中使用.pdf12 - 12pt字體,但在頁腳中使用相同的字體是更小 - 更像是一個10分,但我稱爲PDF12 - 似乎只是限制我的尺寸,我可以在那裏使用...不知道,如果marginbottom也有什麼關係呢? – 2013-05-12 16:18:15
是的 - 將我的marginbottom增加到1.5而不是.5顯着地改變了我的字體大小......它必須限制您在爲marginbottom分配的空間內的大小。 @import如上所述是必需的。 – 2013-05-12 16:24:03