Whatever message this page gives is out now! Go check it out!
ImageGetEXIFTag(name, tagName) |
Parameter | Description |
name | Required. The ColdFusion image on which this operation is performed. |
tagName | Required. The EXIF tag name to be returned. |
<!--- This example shows how to retrieve one element from the EXIF information associated with an image. --->
<!--- Create a ColdFusion image from an existing JPEG file. --->
<cfimage source="../cfdocs/images/artgallery/paul05.jpg" name="myImage">
<!--- Retrieve the name of the software application used to create the original image. --->
<cfset data = ImageGetEXIFTag(myImage,"software")>
<!--- Display the name of the software. --->
<cfdump var="#data#">