What's a good source for handling images with Rails?
I want to know the simplest way of handling image upload,开发者_运维问答 image storage in the database, and image display from the database in the context of Ruby on Rails. These images are for profile pictures. Any gems or plugins to simplify this process would be appreciated. Also, I'd like to know if blob
is the data type for images.
I would have a look at paperclip. https://github.com/thoughtbot/paperclip
精彩评论