上传后强制图像宽度

发布于 2024-11-30 17:51:33 字数 116 浏览 0 评论 0原文

执行 cffile action="upload" 后,我想检查宽度(假设它是图像)。我现在用的是CF8。

有没有内置函数可以获取图像的宽度?如果CF9中有内置功能,我想我需要知道它以便我们更新时使用。

After doing a cffile action="upload", I'd like to check the width (assuming it's a image). I'm currently using CF8.

Is there a built-in function to get the width of an image? If there's a built-in function in CF9, I guess I need to know that for when we update.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

信仰 2024-12-07 17:51:33

据 LiveDocs 称,CF8 中存在该功能。

http://livedocs.adobe.com /coldfusion/8/htmldocs/help.html?content=functions_h-im_32.html#5164681

Adob​​e 提供的示例应该可以帮助您:

<!--- This example shows how to retrieve information associated with the image. --->
<!--- Create a ColdFusion image from a JPEG file.--->
<cfimage source="../cfdocs/images/artgallery/jeff05.jpg" name="myImage">
<!--- Retrieve the information associated with the image. --->
<cfset info=ImageInfo(myImage)>
<cfdump var="#info#"></cfdump>
<p>height = <cfoutput>#info.height#</cfoutput>
<p>width = <cfoutput>#info.width#</cfoutput>
<p>source = <cfoutput>#info.source#"</cfoutput>

According to LiveDocs, the functionality exists in CF8.

http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=functions_h-im_32.html#5164681

The example provided by Adobe should get you going:

<!--- This example shows how to retrieve information associated with the image. --->
<!--- Create a ColdFusion image from a JPEG file.--->
<cfimage source="../cfdocs/images/artgallery/jeff05.jpg" name="myImage">
<!--- Retrieve the information associated with the image. --->
<cfset info=ImageInfo(myImage)>
<cfdump var="#info#"></cfdump>
<p>height = <cfoutput>#info.height#</cfoutput>
<p>width = <cfoutput>#info.width#</cfoutput>
<p>source = <cfoutput>#info.source#"</cfoutput>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文