v1.03
-
Some facets generated would have narrow borders (e.g. https://i.imgur.com/dz4ANz1.png) that are not removed by the small facet removal process. Now before the facets are built, single pixel strips horizontally or vertically can be removed to prevent this. As the small facet removal process can reintroduce some of these strips, this process is repeated in a few runs, the number configurable in the settings (or "narrowPixelStripCleanupRuns"). Setting this to 0 disables the narrow pixel cleanup altogether.
-
Output profiles now contain everything related to the output and can output to various filetypes (svg,png, jpg), e.g.:
"outputProfiles": [
{
"name": "full",
"svgShowLabels": true,
"svgFillFacets": true,
"svgShowBorders": true,
"svgSizeMultiplier": 3,
"svgFontSize": 50,
"svgFontColor": "#333",
"filetype": "png"
},
{
"name": "bordersLabels",
"svgShowLabels": true,
"svgFillFacets": false,
"svgShowBorders": true,
"svgSizeMultiplier": 3,
"svgFontSize": 50,
"svgFontColor": "#333",
"filetype": "svg"
},
{
"name": "jpgtest",
"svgShowLabels": false,
"svgFillFacets": true,
"svgShowBorders": false,
"svgSizeMultiplier": 3,
"svgFontSize": 50,
"svgFontColor": "#333",
"filetype": "jpg",
"filetypeQuality": 80
}
]