I planning to print a large map(6400x15360) and I want to split that image to multiple images(1123x794).
I found that -crop 1123x794 do that but How I can add offset so it will be easier for me to glue the pages after the print?
Asked
Active
Viewed 145 times
0
Sachin Tripathi
- 124
- 6
sh1omi
- 9
- 2
-
You don't need an offset. `convert` will divide the image into tiles of the size given in `-crop`. – muru Jul 21 '17 at 09:04
-
Also: https://askubuntu.com/a/143501/158442 – muru Jul 21 '17 at 09:05
-
@muru What if i want an offset? – sh1omi Jul 21 '17 at 09:06
-
Add a `+x+y` to the crop dimension. See http://www.imagemagick.org/Usage/crop/#crop But given your reason "so it will be easier for me to glue the pages", I don't see why you want one. – muru Jul 21 '17 at 09:14
-
@muru when I do "convert -crop 1123x794+30+30 test.png test\%d.png", it just give the first image and stop. – sh1omi Jul 21 '17 at 10:17