从 cfhtmltopdf 生成的 pdf 文件的页脚中删除额外的 space
Remove extra space from footer of pdf file generated by cfhtmltopdf
我正在从 html 内容生成 pdf 报告,我试图将页脚 html 内容放入 pdf 中,但我无法将其放入 cfhtmltopdfitem 标签,因为 div 标签和 class 不允许在其中。所以,我只是把它放在我的 html 体内,但我在 html 页脚和实际的 pdf 页脚(如图所示)之间有一个巨大的 space。
***注意:我觉得这一个代码示例不是必需的,如果需要请告诉我。
提前致谢。
这个问题我已经在ColdFusion论坛提出了,这里是参考:https://forums.adobe.com/thread/2204100
没有看到您的代码就很难诊断。如果您使用 CFdocument
,请设置 marginBottom="0"
属性。例如:
<cfdocument
scale="100" unit="in"
format="pdf"
name="temp"
overwrite="yes"
localUrl="no"
fontEmbed="yes"
marginBottom = "0"
marginLeft = "0"
marginRight = "0"
marginTop = "0"
pageWidth="7.5"
pageHeight="10"
orientation="landscape" >
我正在从 html 内容生成 pdf 报告,我试图将页脚 html 内容放入 pdf 中,但我无法将其放入 cfhtmltopdfitem 标签,因为 div 标签和 class 不允许在其中。所以,我只是把它放在我的 html 体内,但我在 html 页脚和实际的 pdf 页脚(如图所示)之间有一个巨大的 space。
***注意:我觉得这一个代码示例不是必需的,如果需要请告诉我。
提前致谢。
这个问题我已经在ColdFusion论坛提出了,这里是参考:https://forums.adobe.com/thread/2204100
没有看到您的代码就很难诊断。如果您使用 CFdocument
,请设置 marginBottom="0"
属性。例如:
<cfdocument
scale="100" unit="in"
format="pdf"
name="temp"
overwrite="yes"
localUrl="no"
fontEmbed="yes"
marginBottom = "0"
marginLeft = "0"
marginRight = "0"
marginTop = "0"
pageWidth="7.5"
pageHeight="10"
orientation="landscape" >