当前位置: 代码迷 >> ColdFusion >> cf8能不能把网站一路径下的所有图片生成个缩略图放在一个页面,并且点击缩略图能查看详细?解决方案
  详细解决方案

cf8能不能把网站一路径下的所有图片生成个缩略图放在一个页面,并且点击缩略图能查看详细?解决方案

热度:8741   发布时间:2013-02-26 00:00:00.0
cf8能不能把网站一路径下的所有图片生成个缩略图放在一个页面,并且点击缩略图能查看详细?
rt

------解决方案--------------------------------------------------------
<cfdirectory name="abc" action="list" directory="C:\Inetpub\wwwroot" filter="*.gif">
<cfoutput query="abc">
<cfimage
action="resize"
source="#abc.name#"
width="20"
height="20"
name="objImage"
/>

<cfimage
action="writetobrowser"
source="#objImage#"
/>
</cfoutput>
  相关解决方案