Skip to content

Instantly share code, notes, and snippets.

@zhuangya
Created August 20, 2013 11:36
Show Gist options
  • Select an option

  • Save zhuangya/6280315 to your computer and use it in GitHub Desktop.

Select an option

Save zhuangya/6280315 to your computer and use it in GitHub Desktop.
require 'sinatra'
require 'rqrcode_png'
get '/' do
qs = @env['rack.request.query_hash']
text = qs['url']
qr_png = RQRCode::QRCode.new(text, :size => 32).to_img
content_type 'image/png'
qr_png.to_blob
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment