17

What's the command that will take an image, move / translate it by an offset of X,Y pixels and save the result?

Camille Goudeseune
  • 2,934
  • 2
  • 35
  • 56
MaiaVictor
  • 51,090
  • 44
  • 144
  • 286

1 Answers1

23

You could try something like this:

convert test.png -page +20+20 -background none -flatten newtest.png

where +20+20 represent your x,y coordinates.

Andrea
  • 11,801
  • 17
  • 65
  • 72