Searching for uploading files Rails
I have been looking for plugin or gem for Rails 2 - to upload files.
I need:
- progress bar
- multiple uploading
- work with database
- Set image size (for example: thumb 200x200)
- Set imgae size in MB (for example :maximum => 500.megabytes).
Anyone has any ideas? I looking for this gem/plugin for week :( and nothing... Can you please help me? VERY ve开发者_开发技巧ry THANK YOU!
You need to use either Carrierwave or Paperclip for handling the upload. Image resizing can be handled via both as post processes using ImageMagick etc.
For progress bars and multiple uploading have a look at www.uploadify.com
Few reference articles:
http://blog.assimov.net/post/4306595758/multi-file-upload-with-uploadify-and-carrierwave-on
精彩评论