我一直在使用Coldfusion cfdocument来生成PDF。然而,自从我的追踪期到期以来,我就有了这个丑陋的水印,并且说#34; Adobe ColdFusion Developer Trail Edition / Not for Production Use"显示在我的PDF文件上。
我做了一些研究,发现你必须购买此功能的许可才能运作。有办法解决吗?是否有任何可供免费使用的替代品?
答案 0 :(得分:7)
我使用并推荐WKHTMLTOPDF。它是一个单一的便携式命令行程序。 (还有WKHTMLTOImage。)
我写了一个与ColdFusion 9,10,11& 2016年并在每个版本上生成一致的高质量结果:
http://gamesover2600.tumblr.com/search/wkhtmltopdf
<CF_WKHTMLTOPDF
PageURL = "http://#CGI.Server_Name#/temp/#PDFFileName#_Page.htm"
HeaderURL = "http://#CGI.Server_Name#/temp/#PDFFileName#_Header.htm"
FooterURL = "http://#CGI.Server_Name#/temp/#PDFFileName#_Footer.htm"
filename = "c:\websiteroot\temp\#PDFFileName#.pdf"
orientation = "portrait"
DisableSmartShrinking="yes"
margintop = "1"
marginleft = "0.25"
marginright = "0.25"
marginbottom = "0.50">