For the map processing I use the next steps:
Every HexDraw “Export image” x2 8570x9283 as a <default>.png create a image with have a extra border and a wrong size. To correct this I use (ImageMagick) again.
convert map.png -crop 8267x9143+152+71 +repage -resize 3733x4192 map.png
A default mapsize of 20x15 use the next values
convert map.png -crop 5689x4324+152+71 +repage -resize 2569x1952 map.png
After finishing the first map, as saveas within Hexdraw create the next map, now move the content with the next steps:
1) Add 1 row to the map.
2) Shift map 1 left-down + 1 left-up.
3) Repeat step 2 26 times.
4) Remove 1 row from the map.
Save the new map and check the first column and the upper row, sometime some elements are removed with this process.
Replace the old background image and at the background image for this new map.
After the start of the 3 map I realize the shifting process give an almost perfect merging, so why not make 1 very large map instead of 7 smaller maps.
After some experiments with (ImageMagick) I found a way of several processing steps to created one single large map. And there was one important issue left. How to read/write/resize a .fp9 file and after contacting Rob for some inside info I have created a small extra tool called OtsFp9Tools.
Now It was time to go further with the maps but there was a differend. Only the first 46 colums of the first 6 maps where important only the last map was used completely. And I decide to start with the map values when the map was complete.
The process if the map has now the following steps:
- Export from Hexdraw
- Truncate the exporting map with
convert map.png -crop 8267x9143+152+71 +repage -resize 3733x4192 map.png.
- Extra Truncate for trimming the overlapping part with
convert" map.png -crop 2549x4129+0+0 +repage map.png
- The last map have a extra action to create a additional map where only a small part was relevant
- This give 8 smaller maps
The finish steps are:
- Stitch the 8 maps with
montage MAP1 MAP2 MAP3 MAP4 MAP5 MAP6 MAP7 MAP8 -tile 8x1 -geometry 2549x4129+0+0 map.png
- Truncate the end
convert map.png -crop 19026x4129+0+0 +repage map.png
Al these steps are embedded within scripts for repeated usage.