使用cfpdf显示pdf文件

时间:2010-04-29 19:57:22

标签: coldfusion

我有一个页面,我需要显示一个pdf和一个“我同意”按钮。

问:我是否使用cfpdf创建pdf的缩略图并显示结果输出?

cfWack 8的第32章讨论了如何使用cfpdf。

1 个答案:

答案 0 :(得分:1)

我曾经在办公室做过一次......这不像Adobe的白皮书那样甜蜜。

这是我的代码:

<cfpdf source="#attachmentFilePath##attachmentFilename#" pages="1" imagePrefix="#prefix#" action="thumbnail" destination="#application.attachmentsFilePath#/_thumbs" format="jpg" overwrite="true" resolution="low" scale="80">

                    <cfset thumbURL = "http://127.0.0.1:9001/attachments/_thumbs/#prefix#_page_1.jpg">

                    <cfif fileExists(thumb)>

                        <tr>
                            <td width="100%">
                                <a href="attachmentView.cfm?attachNo=#attachNo#&act=download">
                                    <img alt="#attachmentFilename#" src="#thumbURL#" width="500" />
                                </a>
                            </td>
                        </tr>

                    <cfelse>

                        <cfheader name="Content-Type" value="#attachmentMIMEType#">
                        <cfheader name="Content-Disposition" value="attachment; filename=#attachmentFilename#">
                        <cfcontent type="#attachmentMIMEType#" file="#attachmentFilePath##attachmentFilename#">

                    </cfif>

我还检查isPDF()并将所有这些放在try / catch中。

这有什么问题?它适用于30%的PDF用户试图预览所以在catch我显示链接下载而不是图像:(