I am trying to retrieve the content-type and filename of an image which i am receiving in base64 encoded format.
here is the code which is doing a POST request with the base64 encoded image
require 'net/http'
require "rubygems"
require 'active_support'
url = URI.parse('http://localhost:3000/')
image = ActiveSupport::Base64.encode64(open("public/images/rails.png").to_a.join)
post_params = {'image' => image }
Net::HTTP.post_form(url, post_params)
In the controller, I need to get the content-type and filename of this image. So first I am decoding it
image = ActiveSupport::Base64.decode64(params[:image])
image_data = StringIO.new(image)
and then I am stuck!
I basically want to save this image using paperclip. Need some serious help!
UPDATE : I can't send params for content-type and filename. I was just mimicking the client which is sending this (and i have no control on adding extra params)