> I am looking for a plugin to handle files (images actually). > Here is a list of features that I would like > 1) I would like many images for a single model. (has_many) > 2) I would like to store images in several resolutions (automatically) > 3) I would like the images to be stored in DB. > > I hage looked at attachment_fu and paperclip. > > It seems like attachment_fu will do the work. It seems like paperclip > cannot satisfy requirement (1) and (3). > > Any comments?
I've used them both and like paperclip for image handling better. It handles #2 quite well. It can also handle #1. Just create an Image model that uses paperclip and then your other Model can "have_many :images". I'd rethink the need to put the images in the database, but that's just me. I don't know how hard it would be to write a DB implementation for Paperclip... probably wouldn't be too bad as it's already setup with multiple backends... -philip --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

