Skip to content

Instantly share code, notes, and snippets.

@mikesprague
Created October 31, 2013 15:42
Show Gist options
  • Save mikesprague/7251956 to your computer and use it in GitHub Desktop.
Save mikesprague/7251956 to your computer and use it in GitHub Desktop.
CFML: Create Data URI
<cfscript>
function data_uri(fullFilePath, mimeType='image/*') {
var contents = fileReadBinary(fullFilePath);
var base64contents = toBase64(contents);
var returnString = "data:" & mimeType & ";base64," & base64contents;
return returnString;
}
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment