3

を使用して PDF ドキュメントにフッターを作成して<cfdocumentitem type="footer">いますが、正常に動作しています。フォントを制御できないように見えることを除いて。などを試してみましたが<span><font face>うまくいきませんでした。現在、以下のクラスのテーブルを試しています。

でフッターのフォントの外観を制御する方法を知っている人はい<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>
4

2 に答える 2

1

次のように、フッターにスタイルシート リンクのコピーを追加してみてください。

<cfdocumentitem type="footer">
    <style type="text/css">@import "pdf.css";</style>
    <cfoutput>
        <table>
            ... etc
        </table>
    </cfoutput>
</cfdocumentitem> 
于 2013-05-12T08:32:32.973 に答える
1

WordPress へようこそ。フッター内のテキストを正常にフォーマットできた唯一の方法は、html スタイルとインライン スタイルを組み合わせて使用​​することです。

ここに私のために働くフッターがあります:

<cfdocumentItem type="footer">
    <table width="100%">
        <tr>
            <td style="font-family:Arial; font-size: 9pt;">Printed On: #dateFormat(now(), "mm/dd/yyyy")# #timeFormat(now(), "HH:MM")#</td>
            <td style="font-family:Arial; font-size: 9pt;" align="right">Page #cfdocument.currentPageNumber# of #cfdocument.totalPageCount#</td>
        </tr>
    </table>
</cfdocumentItem>
于 2013-05-10T16:27:25.290 に答える