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 回答