Hello? Any paper_clip wizards out there know if you can when using paperclip to save an image, also save the image dimensions (width&height) in 2 extra fields? How do you get such data during the paperclip upload process?
Thank you
|
Hello? Any paper_clip wizards out there know if you can when using paperclip to save an image, also save the image dimensions (width&height) in 2 extra fields? How do you get such data during the paperclip upload process? Thank you |
||||
|
|
|
Just for the sake of completeness, even though previous answers already show good enough suggestions.
Image don't even have to be downloaded from S3 (or read from a file), paperclip provides it to event handler itself. See Events section of the readme for details. |
|||
|
|
When a user uploads an image with paperclip I process it with the following model:
The I cache the results in a database field. For example if I uploaded an image that was
|
||||
|
|
|
You will need to require 'RMagick'
Not sure how to have it working with the callbacks, though. Maybe something like:
|
||||
|
|
|
I think that such functionality does not exist in paperclip. If you want to add it, you'll probably want to modify the 'assign' method in lib/paperclip/attachment.rb, where you can get the geometry using Paperclip::Geometry.from_file |
|||