I used the imagemagic to place the watermark image. I used the following code to display the watermark in center.
shell_exec("composite -gravity center logo.png images/test.png images/test.png");
Now I want to display the watermark in bottom right corner.
For this i tried the code:
composite -geometry -10-10
But i couldn't display this in bottom right.