10 lines
573 B
Python
10 lines
573 B
Python
import IconCreator
|
|
import os
|
|
os.chdir("srcImages/functions")
|
|
for files in os.listdir("."):
|
|
if files.endswith(".svg"):
|
|
fileName, fileExtension = os.path.splitext(files)
|
|
IconCreator.convertSVGToPNG(files, "../../dstImages/wp8/159x159/LightTheme/functions/"+fileName+".png",159,159,256,256,"fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" , "Icon")
|
|
IconCreator.convertSVGToPNG(files, "../../dstImages/wp8/159x159/DarkTheme/functions/"+fileName+".png",159,159,256,256,"fill:#FFFFFF;fill-opacity:1;fill-rule:evenodd;stroke:none", "Icon")
|
|
|