Skip to content

Instantly share code, notes, and snippets.

@mscoutermarsh
Created December 22, 2015 00:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mscoutermarsh/5209c992204810ed5fe9 to your computer and use it in GitHub Desktop.
Save mscoutermarsh/5209c992204810ed5fe9 to your computer and use it in GitHub Desktop.
require 'imgkit'
require 'sinatra'
get '/hi' do
content_type 'image/jpg'
html = '<div style="font: Georgia,Cambria,\'Times New Roman\',Times,serif;">
<div style="width: 300px; padding: 5px;">
<img height="30" src="https://ph-avatars.imgix.net/114714/original?auto=format&amp;fit=crop&amp;crop=faces&amp;w=60&amp;h=60" style="border-radius: 50%;"width="30" data-reactid=".8.1.1.0.4.0.0.1.1.1.$166511.0.0.0.1"> <span style="font-weight: 600;">Fred Rivett</span><span style="color: #bbbbbb;"> - One half of @wecontrast</span>
<div style="padding: 5px;">
Hi <span style="background-color: #F6A98E;">People, this is highlighted here</span>'
kit = IMGKit.new(html, width: 400, quality: 100)
kit.to_img
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment