Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In Rails 3, how can I pass thumbnail image as Byte Array to JSON?

share|improve this question
where is the image coming from? from a browser? with javascript, or? – Rogier Jan 10 at 0:43

1 Answer

up vote 2 down vote accepted

For converting images to text you could convert it to base64.

Check out:

ruby:

http://ruby-doc.org/stdlib-1.9.3/libdoc/base64/rdoc/Base64.html

jquery:

http://archive.plugins.jquery.com/project/base64

UPDATE:

How to encode media in base64 given URL in Ruby

share|improve this answer
ruby-doc.org/stdlib-1.9.3/libdoc/base64/rdoc/Base64.html shows string and URL encode/decode only, not on image. – Aidan Jan 10 at 14:08
checkout the update, it already explained on SO... – Rogier Jan 10 at 14:53
Base64.encode64 converts my image into the byte array that is not as expected. Would expect it to be in array of integers, such as this example: techques.com/question/1-10402834/…. What decoder I should use? – Aidan Jan 11 at 2:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.