Reputation: 13548
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.
Upvotes: 1
Views: 1045
Reputation: 3779
I would have a look at paperclip. https://github.com/thoughtbot/paperclip
Upvotes: 2