Skip to content

Instantly share code, notes, and snippets.

View tsboh's full-sized avatar

Alphons Vinkesteijn tsboh

View GitHub Profile
@hateradio
hateradio / html64.rb
Last active April 29, 2024 05:58
ruby image to base64 string
require 'base64'
# converts attached PNGs into base64 strings
# Eg
# <img src="my.png" /> to <img src="data:image/png;base64,..." />
class To64Html
def initialize(path)