I'm using attachment_fu with the image_science gem but
attachment_fu doesn't seem to be processing the uploaded
photos. I get the original size and no thumbnails. Nothing
in the error logs to indicate anything bad happened and the
model reports back success. The file shows up in my bucket,
just unprocessed, no thumbnails.
The app works fine locally, of course. ;)
I installed the image_science gem and it shows up as
installed in my gem folder. The photo size is 52KB. Here's
my configuration:
class Photo < ActiveRecord::Base
has_attachment :content_type => :image,
:storage => :s3,
:max_size => 500.kilobytes,
:resize_to => '640x480>',
:processor => 'ImageScience',
:thumbnails => {
:large => '96x96>',
:medium => '64x64>',
:small => '48x48>'
}
end
Hmmm...anyone have tips on how to troubleshoot this one?
Thanks, Kevin
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Heroku" 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/heroku?hl=en
-~----------~----~----~----~------~----~------~--~---