使用coldfusion创建的小红色x而不是pdf中的图像

时间:2016-08-30 14:10:54

标签: pdf coldfusion

我试图使用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>,它会将图像打印到浏览器,因此我确定图像存在。

0 个答案:

没有答案