What's the command that will take an image, move / translate it by an offset of X,Y pixels and save the result?
Asked
Active
Viewed 8,436 times
1 Answers
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
-
Does not work on tiff images if the offsets are negative :/ – GiantCowFilms Oct 13 '16 at 00:43