我试图使用cfdocument在pdf中嵌入图像,它看起来像这样:
FORM: <input type="file" name="strFileName">
SUBMIT:
<cfset myImage=ImageNew(#Form.strFileName#)>
<cfdocument format="PDF" overwrite="yes" filename = "#Form.strFileName#.pdf" >
<cfdocumentsection>
<cfimage source="#myImage#" action="writeToBrowser">
</cfdocumentsection>
</cfdocument>
如果我使用<cfoutput><cfimage source="#myImage#" action="writeToBrowser"></cfoutput>
,它会将图像打印到浏览器,因此我确定图像存在。