• Full-time student
itsZero • Works in hypo
• http://itszero.org/
• http://twitter.com/itszero
...
Sinatra + RMagick
#!/usr/bin/ruby
require 'rubygems'
require 'sinatra'
require 'RMagick'
include Magick
FONTPATH = File.dirname(File.expand_path(__FILE__)) + \"/
Aller/Aller_Bd.ttf\"
get '/' do
open('public/index.html').read
end
get '/gen_icon' do
headers['Content-Type'] = 'image/png'
[some nasty RMagick code...]
canvas.format = 'png'
canvas.to_blob
end
0 comments
Post a comment