0

How I can insert one page above another in specific cords. I want to use gm library for imageMagic but I cant find such way. maybe another libs exist

John
  • 21
  • 3
  • 1
    Please show what you've tried and clarify your question a bit. Take a look at [How To Ask](http://stackoverflow.com/help/how-to-ask) – Athena Jul 28 '16 at 20:10

1 Answers1

0

This is really simple, just use the -geometry option.

gm composite -geometry +x+y overlay.png background.png output.png

x and y are your coordinates where you'd like to have your overlay image start at

JoeManFoo
  • 339
  • 3
  • 11