を使用してpdfを生成してcfdocument
いますが、このコードで完全に機能しています:
<cfdocument format="PDF" fontembed="true" saveAsName="file1" mimetype="application/pdf" localUrl="true">
<cfoutput>
#response.filecontent#
<cfdocumentitem type="footer">
#cfdocument.currentpagenumber# of #cfdocument.totalpagecount#
</cfdocumentitem>
</cfoutput>
</cfdocument>
その中に変数を含めると#session.footer#
、PDF の生成に時間がかかります。
<cfdocument format="PDF" fontembed="true" saveAsName="file1" mimetype="application/pdf" localUrl="true">
<cfoutput>
#response.filecontent#
#session.footer#
<cfdocumentitem type="footer">
#cfdocument.currentpagenumber# of #cfdocument.totalpagecount#
</cfdocumentitem>
</cfoutput>
</cfdocument>
フッター変数には、ドキュメントの最後に追加したい完全なフッター セクションが含まれています。なぜこんなに時間がかかるのか理解できません。ColdFusion 10 を使用しています。