You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: bin/stitch/main.go
+59-2
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,8 @@ var flagPlayerPathInputPath = flag.String("player-path", filepath.Join(".", ".."
25
25
varflagOutputPath=flag.String("output", filepath.Join(".", "output.png"), "The path and filename of the resulting stitched image. Supported formats/file extensions: `.png`, `.jpg`, `.dzi`.")
26
26
varflagScaleDivider=flag.Int("divide", 1, "A downscaling factor. 2 will produce an image with half the side lengths.")
27
27
varflagBlendTileLimit=flag.Int("blend-tile-limit", 9, "Limits median blending to the n newest tiles by file modification time. If set to 0, all available tiles will be median blended.")
28
+
varflagDZITileSize=flag.Int("dzi-tile-size", 512, "The size of the resulting deep zoom image (DZI) tiles in pixels.")
29
+
varflagDZIOverlap=flag.Int("dzi-tile-overlap", 2, "The number of additional pixels around every deep zoom image (DZI) tile in pixels.")
28
30
varflagXMin=flag.Int("xmin", 0, "Left bound of the output rectangle. This coordinate is included in the output.")
29
31
varflagYMin=flag.Int("ymin", 0, "Upper bound of the output rectangle. This coordinate is included in the output.")
30
32
varflagXMax=flag.Int("xmax", 0, "Right bound of the output rectangle. This coordinate is not included in the output.")
0 commit comments