3
這個想法目前只是在繪圖板上,我首先想知道它是否可行,然後如何完成。以編程方式處理圖像請求並在Sinatra中返回流
說,在末日的應用有以下應用程序文件:
#!/usr/bin/env ruby
# encoding: UTF-8
require 'sinatra'
get '/hi' do
"Hello World"
end
get '/' do
erb :index
end
get '/url_to_img.jpg'
#parse url
#process an image
#stream the image back to the client as nothing have happened
end
能圖像請求被攔截了,怎麼會一個圖像文件被退回包裹在一個HTTP響應。
對不起,對於非常粗糙的問題。
謝謝你的答案和模板代碼,我會試試這:) – olovholm 2013-04-02 10:27:48