使用 'action="writetobrowser"' 将使用源图像的副本。它创建一个临时文件,该文件被推送到浏览器并稍后销毁。
这是 CF 8 文档中的一句话:
“使用 writeToBrowser 操作将一个或多个 ColdFusion 图像直接显示到浏览器,而无需将它们写入文件。”
我用 CF8 用一张大照片 (4608x3456) @ 3.47MB 测试了你的代码。我的浏览器上显示的图像已调整为 400x300 @ 247.47KB。我用的是火狐右键| 查看图像信息以获取调整大小的图像信息。您还可以使用 Firebug | Net 选项卡以获取传输的图像大小。
调整大小的图像将位于“/CFFileServlet/_cf_image/”中。
原始文件 (#bildpfad##bilddateiname#) 的大小不会改变。
不要依赖设计为临时文件的存在。临时的意思就是这样。一次调整大小的文件名可能与 10 分钟后调整大小的文件名不同,即使它是相同的源图像。在不同版本的 CF 之间,临时文件的处理方式也可能不同。
如果您需要保留调整后图像的副本,请使用带有目标属性的 action="write" 或 action="resize" 并将调整后的图像的副本保存在 CF 服务器上。
这是它如何工作的示例:
<!---assume that bildpfad can be different domains/folders--->
<!---RegEx = remove protocol, replace '/' with '!', replace '.' with '~'--->
<cfset slashReplacement = "!">
<cfset periodReplacement = "~">
<cfset imageFilename = REReplace(REReplace(REReplaceNoCase(bildpfad, "https?://", "", "one"), "\/", slashReplacement, "all"), "\.", periodReplacement, "all") & bilddateiname>
<!---resizedImgDestination is a web path--->
<cfset resizedImgDestination = "/images/resized/rs_#imageFilename#">
<!---debug info, can comment out when working--->
<cfoutput>source = [#bildpfad##bilddateiname#]<br />destination = [#ExpandPath(resizedImgDestination)#]<br /></cfoutput>
<!---/debug info, can comment out when working--->
<cfif NOT FileExists(ExpandPath(resizedImgDestination))>
<cfhttp url="#bildpfad##bilddateiname#" result="stGetImg" resolveurl="no" useragent="Mozilla/5.0 (Windows NT 6.1; WOW64; rv:13.0) Gecko/20100101 Firefox/13.0.1" timeout="45" getasbinary="yes" throwonerror="no" />
<cfset myImage = ImageNew(stGetImg.FileContent)>
<cfif IsImage(myImage)>
<cfimage action="resize" destination="#ExpandPath(resizedImgDestination)#" height="" isbase64="false" overwrite="true" source="#myImage#" width="400" />
</cfif>
</cfif>
<cfoutput><img src="#resizedImgDestination#" /></cfoutput>
通过将高度保留为空字符串,它将按比例调整高度并缩放高度以匹配宽度。
您必须从您的站点 Web 根目录创建“/images/resized/”文件夹。
ExpandPath() 比使用静态路径定义更好。如果您必须将站点移动到不同的服务器或操作系统,它将节省大量时间。
注意:我更新了上面的代码以更好地适应问题中变量的使用。我还更改了图像的读取方式。我安装了带有 CHF 4 + 修补程序的 CF 8.01,但是在读取远程文件时,使用 cfimage 出现错误(JPG 处理中发生异常。段大小将超出文件流长度)。我的解决方案是使用 cfhttp 来读取图像。我还更新了代码以使用更好的命名变量“resizedImgDestination”。