mirror of
				https://github.com/Dadido3/noita-mapcap.git
				synced 2025-10-31 03:09:35 +00:00 
			
		
		
		
	Fix typo in stitcher flag
`wepb-level` --> `webp-level`
This commit is contained in:
		
							parent
							
								
									b4dca53fc8
								
							
						
					
					
						commit
						751877b472
					
				@ -48,7 +48,7 @@ example list of files:
 | 
				
			|||||||
    The size of the resulting deep zoom image (DZI) tiles in pixels. Defaults to 512.
 | 
					    The size of the resulting deep zoom image (DZI) tiles in pixels. Defaults to 512.
 | 
				
			||||||
  - `dzi-tile-overlap`
 | 
					  - `dzi-tile-overlap`
 | 
				
			||||||
    The number of additional pixels around every deep zoom image (DZI) tile. Defaults to 2.
 | 
					    The number of additional pixels around every deep zoom image (DZI) tile. Defaults to 2.
 | 
				
			||||||
  - `wepb-level`
 | 
					  - `webp-level`
 | 
				
			||||||
    Compression level of WebP files, from 0 (fast) to 9 (slow, best compression). Defaults to 8.
 | 
					    Compression level of WebP files, from 0 (fast) to 9 (slow, best compression). Defaults to 8.
 | 
				
			||||||
  - `xmax int`
 | 
					  - `xmax int`
 | 
				
			||||||
    Right bound of the output rectangle. This coordinate is not included in the output.
 | 
					    Right bound of the output rectangle. This coordinate is not included in the output.
 | 
				
			||||||
 | 
				
			|||||||
@ -26,7 +26,7 @@ var flagScaleDivider = flag.Int("divide", 1, "A downscaling factor. 2 will produ
 | 
				
			|||||||
var flagBlendTileLimit = 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.")
 | 
					var flagBlendTileLimit = 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.")
 | 
				
			||||||
var flagDZITileSize = flag.Int("dzi-tile-size", 512, "The size of the resulting deep zoom image (DZI) tiles in pixels.")
 | 
					var flagDZITileSize = flag.Int("dzi-tile-size", 512, "The size of the resulting deep zoom image (DZI) tiles in pixels.")
 | 
				
			||||||
var flagDZIOverlap = flag.Int("dzi-tile-overlap", 2, "The number of additional pixels around every deep zoom image (DZI) tile.")
 | 
					var flagDZIOverlap = flag.Int("dzi-tile-overlap", 2, "The number of additional pixels around every deep zoom image (DZI) tile.")
 | 
				
			||||||
var flagWebPLevel = flag.Int("wepb-level", 8, "Compression level of WebP files, from 0 (fast) to 9 (slow, best compression).")
 | 
					var flagWebPLevel = flag.Int("webp-level", 8, "Compression level of WebP files, from 0 (fast) to 9 (slow, best compression).")
 | 
				
			||||||
var flagXMin = flag.Int("xmin", 0, "Left bound of the output rectangle. This coordinate is included in the output.")
 | 
					var flagXMin = flag.Int("xmin", 0, "Left bound of the output rectangle. This coordinate is included in the output.")
 | 
				
			||||||
var flagYMin = flag.Int("ymin", 0, "Upper bound of the output rectangle. This coordinate is included in the output.")
 | 
					var flagYMin = flag.Int("ymin", 0, "Upper bound of the output rectangle. This coordinate is included in the output.")
 | 
				
			||||||
var flagXMax = flag.Int("xmax", 0, "Right bound of the output rectangle. This coordinate is not included in the output.")
 | 
					var flagXMax = flag.Int("xmax", 0, "Right bound of the output rectangle. This coordinate is not included in the output.")
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user