Whatever message this page gives is out now! Go check it out!
ImageGetHeight(name) |
Parameter | Description |
name | Required. The ColdFusion image on which this operation is performed. |
<!--- This example shows how to retrieve the height of an image. --->
<!--- Create a ColdFusion image from a JPEG file. --->
<cfimage source="../cfdocs/images/artgallery/jeff05.jpg" name="myImage">
<!--- Retrieve the height of the image. --->
<cfset height=#ImageGetHeight(myImage)#>
<!--- Display the height of the image. --->
<cfdump var="#height#">