3

によって生成されたPDFのヘッダーの高さを設定する方法を知っている人はいます<cfdocumentitem format="pdf:...か?

使ってます<cfdocumentitem type="header">

だから何かを持っている

<cfdocument format="pdf" marginbottom="0" margintop="4" marginleft="0" marginright="0" pagetype="a4" unit="cm" fontembed="no">
<cfdocumentitem type="header">
  This is my header.. I want to reduce the height but can't work out how.
<cfdocumentitem>
</cfdocument>

ポインタを事前に感謝します。

ジェイソン

4

2 に答える 2

3

cfdocumentタグのマージン設定を使用して、ヘッダーまたはフッター用に予約されるスペースの量を制御します。

したがって、あなたの場合、margintopの値を4から低い値に変更します。

<cfdocument format="pdf" marginbottom="0" margintop="4" marginleft="0" marginright="0" pagetype="a4" unit="cm" fontembed="no">

パディング、行の高さなど、ヘッダーの外観をさらに制御するには、ヘッダーコンテンツにHTMLおよびCSSスタイルを追加する必要があります。

于 2012-07-24T13:54:24.057 に答える
1

cfdocumentでmarginTop="number"を使用できます。

<cfdocument
format = "PDF|FlashPaper"
authPassword = "authentication password"
authUser = "authentication user name"
backgroundVisible = "yes|no"
bookmark = "yes|no"
encryption = "128-bit|40-bit|none"
filename = "filename"
fontEmbed = "yes|no"
localUrl = "yes|no"
marginBottom = "number"
marginLeft = "number"
marginRight = "number"
marginTop = "number"
....
于 2013-02-18T05:38:53.617 に答える