我在 ColdFusion 18 中使用 WKHTMLTOPDF,并试图将页面大小设置为“信封 DL”。我在下面添加的代码中找到了全局设置 size.PageSize ,pagesize = "Envelope DL"
但这并没有改变它。有没有人有任何其他想法或可以告诉我我错过了什么?
任何帮助将不胜感激!
<CF_WKHTMLTOPDF
PageURL = "http://www.com/temppdf/test.htm"
filename = "D://temppdf/test.pdf"
orientation = "portrait"
DisableSmartShrinking="yes"
margintop = "0.25"
marginleft = "0.25"
marginright = "0.25"
marginbottom = "0.25"
TimeOut = "180"
AddFooterPageNum="yes">
<cfheader name="content-disposition" value="inline; filename=""CS_#Dateformat(NOW(),'MMDDYYYY')#.pdf""">
<cfcontent type="application/pdf" file="D://temppdf/test.pdf" deletefile="Yes">