Miscellaneous
imageTag()
Signature
Section titled “Signature”imageTag() — returns any
Description
Section titled “Description”Returns an img tag. If the image is stored in the local images folder, the tag will also set the width, height, and alt attributes for you. Note: Pass any additional arguments like class, rel, and id, and the generated tag will also include those values as HTML attributes.
Parameters
Section titled “Parameters”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
source | string | yes | — | The file name of the image if it’s available in the local file system (i.e. ColdFusion will be able to access it). Provide the full URL if the image is on a remote server. |
Examples
Section titled “Examples”imageTag(source) <!--- Outputs an `img` tag for `images/logo.png` --->
#imageTag("logo.png")#
<!--- Outputs an `img` tag for `http://cfwheels.org/images/logo.png` --->
#imageTag(source="http://cfwheels.org/images/logo.png", alt="ColdFusion on Wheels")#
<!--- Outputs an `img` tag with the `class` attribute set --->
#imageTag(source="logo.png", class="logo")#