我在Windows 2016(IIS)上运行ColdFusion 2018,打印我使用<cfdocument>
创建的PDF文件时遇到问题。打印机在CFAdmin中可见,我可以<cfdump>
。这是我所做的:
<html>
<head>
<title>Printing PDF</title>
</head>
<body>
<cfdocument format="PDF" name="3099274.pdf">
<cfoutput>
.... HTML is here ...
</cfoutput>
</cfdocument>
<cfprint type="pdf" source="3099274.pdf" printer="HP LaserJet 4345 CS">
</body>
</html>
我在做什么错了?