Reputation: 9842
success_action_redirect
as per http://aws.amazon.com/articles/1434/The Rails app requires greyscale, thumbnail copies of the images. So I'm thinking about writing a rake task within the Rails app to produce the copies.
My questions are:
If so, would I incur Amazon S3 data transfer fees?
or...
Is there a better way? :)
Thanks!
Upvotes: 2
Views: 2162
Reputation: 13306
...
Upvotes: 2
Reputation: 19789
You could take a look at Magickly if you already have the link to the image itself. I'm not sure, however, if there are fees for data transfer on that end. You could always use CarrierWave to handle your uploads to S3 as well as resizing and image processing.
EDIT I looked at your question again and I saw that you already have a lot of JPEGs in your bucket so I think what you are looking for is the first one. You could use Magickly or use background workers to process the resizing locally. Either way, depending on how to choose to go about it, you will have to get the image itself, unless, you have a direct link to the image.
Upvotes: 1