This should be tagged as a feature request, but there doesn't appear to be a list of tags when opening an issue for delayed_paperclip.
It would be nice to have a way to know when the image is finished processing. This would allow websites, for example, to render a placeholder loading spinner after an image is submitted, allowing the spinner to be replaced by the true image via AJAX when it is done processing and available for display.
You can use the paperclip's callbacks (before__postprocess and after_post_process). At https://github.com/thoughtbot/paperclip search for events. I used those events a while ago and I remember that I run into some troubles when trying to change the model data with callbacks in the post_process callback
This should be tagged as a feature request, but there doesn't appear to be a list of tags when opening an issue for delayed_paperclip.
It would be nice to have a way to know when the image is finished processing. This would allow websites, for example, to render a placeholder loading spinner after an image is submitted, allowing the spinner to be replaced by the true image via AJAX when it is done processing and available for display.