search for: image_binary

Displaying 1 result from an estimated 1 matches for "image_binary".

2010 Dec 22
0
image_tag and send_data
i''m storing images in database. i have this action in controller: def image begin item = StoredItem.find(:first, :conditions => {:id => params[:id]}) rescue return end return if item.nil? if item.image_binary.nil? render :nothing => true else send_data(item.image_binary, :type => item.image_datatype, :disposition => ''inline'') unless item.image_binary.nil? end end and i have this code in view: <%items.each do |item|%> ... <%=image_tag(url_for(:a...