From ec1c809405461eda956ac3808e6e7e23e2b4a5b6 Mon Sep 17 00:00:00 2001 From: mingrammer Date: Mon, 13 Jul 2020 23:34:33 +0900 Subject: [PATCH] fix(scripts): update inkscape option --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 81d206d..535c786 100644 --- a/config.py +++ b/config.py @@ -22,7 +22,7 @@ PROVIDERS = ( CMD_ROUND = "round" CMD_ROUND_OPTS = ("-w",) CMD_SVG2PNG = "inkscape" -CMD_SVG2PNG_OPTS = ("-z", "-w", "256", "-h", "256", "--export-type", "png") +CMD_SVG2PNG_OPTS = ("-w", "256", "-h", "256", "--export-type", "png") CMD_SVG2PNG_IM = "convert" CMD_SVG2PNG_IM_OPTS = ("-shave", "25%x25%", "-resize", "256x256!")