Skip to content

Instantly share code, notes, and snippets.

@ivarvong
Created April 9, 2015 16:26
Show Gist options
  • Save ivarvong/2959f65be6a7c6c610f1 to your computer and use it in GitHub Desktop.
Save ivarvong/2959f65be6a7c6c610f1 to your computer and use it in GitHub Desktop.
Generate an <img> with inline'd base64 data-uri for a local image file
require 'base64'
puts [ "<img src=\"data:image/#{ARGV.first.split('.').last};base64,",
Base64.encode64(
File.open(ARGV.first, 'rb').read
).gsub("\n", ""),
"\">"
].join('')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment