Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
/opt/ImageMagick/bin/composite -dissolve 50 -gravity North 'image_1.png' 'image_2.png' -alpha Set 'output.png'
Wich works fine. It will combine 2 images where image_2 has a alpha of 50% and will be placed center north on top of image_1 and outputted to output.png.
Now I want to "offset" image_2 .. that means .. I still want it gravity north, but let's say offset -10px left or +20px right.