I need to resize images in PaperClip which uses ImageMagick over a background image. I made custom PaperClip processors (https://gist.github.com/xxx/1051938 and https://github.com/thoughtbot/paperclip#custom-attachment-processors) and they are working but I dont know which commands to use to compose the images.
This is process I would like:
User uploads image X
Processor runs and resizes the image X to given dimensions with tranparent fill - Y
Next the background image is cropped to given dimensions - Z
Y is overlayed over the Z centered.
Thanks!
Well after few days of struggle the answer is here:
For IM command line version step by step (a.png is input, tiled.png is source of background)
For IM command line combined code
For use in image magick copy the default Thumbnail processor and make changes to the make method (or just create your own processor)