Whatever message this page gives is out now! Go check it out!
ImageGetIPTCTag(name, tagName) |
Parameter | Description |
name | Required. The ColdFusion image on which this operation is performed. |
tagName | Required. The IPTC tag name whose value is returned. |
<!--- This example shows how to retrieve the caption for a JPEG file. --->
<!--- Create a ColdFusion image from a JPEG file. --->
<cfimage source="../cfdocs/images/artgallery/paul05.jpg" name="myImage" action="read">
<!--- Retrieve the camera make used to take the original picture. --->
<cfset cameraMake=ImageGetIPTCTag(myImage,"make")>
<cfdump var="#cameraMake#>"