Whatever message this page gives is out now! Go check it out!
ImageGetEXIFMetadata(name) |
Parameter | Description |
name | Required. The ColdFusion image on which this operation is performed. |
<!--- This example shows how to retrieve the EXIF header information from a JPEG file. ---> <!--- Create a ColdFusion image from an existing JPEG file. ---> <cfimage source="images\paul05.jpg" name="myImage"> <!--- Retrieve the metadata associated with the image. ---> <cfset data =ImageGetEXIFMetadata(myImage)> <!--- Display the ColdFusion image parameters. ---> <cfdump var="#myImage#"> <!--- Display the EXIF header information associated with the image (creation date, software, and so on). ---> <cfdump var="#data#"> |