imagemagickmoveoffset

How to move (translate) an image by an offset of X, Y on imagemagick?


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


Solution

  • 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.