So I'm working on a rails 3.2 app where I have a CarrierWave uploader; which I use to upload images, and split crop them into a few different sizes - pretty standard stuff.
What I would like to do is composite a new image on top of the image being uploaded, which is also pretty straight forward. (very commonly done for watermarking). The difference is that instead of having static values for positioning the composited image, I need them to be dynamic.
The thing I'm having trouble with is figuring out how to pass dynamic user-defined positional arguments into my carrierwave processor in the 'version' block.
Any ideas?