imageGetBlob

Retrieves the bytes of the underlying image. The bytes are in the same image format as the source image.

imageGetBlob(source) → returns binary

Member Function Syntax

someImage.getBlob()

Argument Reference

source string
Required

The ColdFusion image on which this operation is performed.

Examples
Sample code invoking the imageGetBlob function

CF 11+ Lucee 4.5+ Retrieve the bytes of the underlying image

imgObj = imageRead("http://cfdocs.org/apple-touch-icon.png");
blob = imgObj.getBlob();
writeDump(blob);

Fork me on GitHub