imageInfo

Returns a structure that contains information about the image, such as height, width, color model, size, and filename.

imageInfo(name) → returns struct

Member Function Syntax

someImage.info()

Argument Reference

name string
Required

The image on which this operation is performed.

Compatibility

BoxLang:

Version 1.0.0+ Requires the bx-image module.

Examples
Sample code invoking the imageInfo function

Uses the imageRead function to read an image from a url.

<cfset img = imageRead("http://lorempixel.com/10/20/")>
<cfset imgInfo = imageInfo(img)>
<cfoutput>Image is #imgInfo.height#px high and #imgInfo.width#px wide.</cfoutput>

Expected Result: Image is 20px high and 10px wide.

CF 11+ Lucee 4.5+ Extract the image info

imgObj = imageRead("https://cfdocs.org/apple-touch-icon.png");
info = imgObj.info();
writeDump(info);

Signup for cfbreak to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.

Fork me on GitHub