如何将本地驱动器中的图像放入 cfdocument 文件?
How to put an image from a local drive into a cfdocument file?
这将在浏览器中显示图像:
<cfset myImage=ImageNew("d:\UploadedDocuments\thumbnails87862_page_1.jpg")>
<cfimage source="#myImage#" action="writeToBrowser">
但是如果我在 .pdf 文件中使用相同的代码,它会生成一个小的红色 x。这不可能吗?
如果图像已经在驱动器上,则此处不需要 CFIMAGE。您可以像这样嵌入它:
<img src="file:///d:\mysite\images\myimage.jpg" width="50" height="60">
您也可以使用它的 HTTP 路径 - 将它存储在您的网络服务器可以通过真实或虚拟目录访问的位置,像往常一样使用 <img>
标记。
cfdocument and SSL and this suplimental post on using the file system with cfdocument 上的 post 应该可以帮助您解决问题。
这将在浏览器中显示图像:
<cfset myImage=ImageNew("d:\UploadedDocuments\thumbnails87862_page_1.jpg")>
<cfimage source="#myImage#" action="writeToBrowser">
但是如果我在 .pdf 文件中使用相同的代码,它会生成一个小的红色 x。这不可能吗?
如果图像已经在驱动器上,则此处不需要 CFIMAGE。您可以像这样嵌入它:
<img src="file:///d:\mysite\images\myimage.jpg" width="50" height="60">
您也可以使用它的 HTTP 路径 - 将它存储在您的网络服务器可以通过真实或虚拟目录访问的位置,像往常一样使用 <img>
标记。
cfdocument and SSL and this suplimental post on using the file system with cfdocument 上的 post 应该可以帮助您解决问题。