Whatever message this page gives is out now! Go check it out!
ImageGetIPTCMetadata(name) |
Parameter | Description |
name | Required. The ColdFusion image on which this operation is performed. |
<!--- This example shows how to retrieve the IPTC header information for a
JPEG file. --->
<!--- Create a ColdFusion image from a JPEG file. --->
<cfimage source="images\aiden01.jpg" name="myImage">
<!--- Retrieve the IPTC header information saved with the image, such as
copyright, caption, and headline. --->
<cfset data = ImageGetIPTCMetadata(myImage)>
<!--- Display the parameter values for the ColdFusion image. --->
<cfdump var="#myImage#">
<!--- Display the IPTC header information. --->
<cfdump var=#data#>