-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGeneratePNGsFromSVGs.bat
55 lines (37 loc) · 3.16 KB
/
GeneratePNGsFromSVGs.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
@echo off
@echo Exporting PNGs
@echo Exporting Flight - Hires
start /WAIT "Title" "c:\Program Files\Inkscape\inkscape.exe" SVGs\KeyboardLayout-Flight.svg --export-png=PNGs\KeyboardLayout-Flight_Hires.png --export-width=2560
@echo Exporting Flight - Normal
start /WAIT "Title" "c:\Program Files\Inkscape\inkscape.exe" SVGs\KeyboardLayout-Flight.svg --export-png=PNGs\KeyboardLayout-Flight_Norm.png --export-width=1280
@echo Exporting Flight - Small
start /WAIT "Title" "c:\Program Files\Inkscape\inkscape.exe" SVGs\KeyboardLayout-Flight.svg --export-png=PNGs\KeyboardLayout-Flight_Small.png --export-width=480
@echo Exporting Flight - Dark - Hires
start /WAIT "Title" "c:\Program Files\Inkscape\inkscape.exe" SVGs\KeyboardLayout-Flight-Dark.svg --export-png=PNGs\KeyboardLayout-Flight-Dark_Hires.png --export-width=2560
@echo Exporting Flight - Dark - Normal
start /WAIT "Title" "c:\Program Files\Inkscape\inkscape.exe" SVGs\KeyboardLayout-Flight-Dark.svg --export-png=PNGs\KeyboardLayout-Flight-Dark_Norm.png --export-width=1280
@echo Exporting Flight - Dark - Small
start /WAIT "Title" "c:\Program Files\Inkscape\inkscape.exe" SVGs\KeyboardLayout-Flight-Dark.svg --export-png=PNGs\KeyboardLayout-Flight-Dark_Small.png --export-width=480
@echo Exporting Build - Hires
start /WAIT "Title" "c:\Program Files\Inkscape\inkscape.exe" SVGs\KeyboardLayout-Build.svg --export-png=PNGs\KeyboardLayout-Build_Hires.png --export-width=2560
@echo Exporting Build - Normal
start /WAIT "Title" "c:\Program Files\Inkscape\inkscape.exe" SVGs\KeyboardLayout-Build.svg --export-png=PNGs\KeyboardLayout-Build_Norm.png --export-width=1280
@echo Exporting Build - Small
start /WAIT "Title" "c:\Program Files\Inkscape\inkscape.exe" SVGs\KeyboardLayout-Build.svg --export-png=PNGs\KeyboardLayout-Build_Small.png --export-width=480
@echo Exporting Build - Dark - Hires
start /WAIT "Title" "c:\Program Files\Inkscape\inkscape.exe" SVGs\KeyboardLayout-Build-Dark.svg --export-png=PNGs\KeyboardLayout-Build-Dark_Hires.png --export-width=2560
@echo Exporting Build - Dark - Normal
start /WAIT "Title" "c:\Program Files\Inkscape\inkscape.exe" SVGs\KeyboardLayout-Build-Dark.svg --export-png=PNGs\KeyboardLayout-Build-Dark_Norm.png --export-width=1280
@echo Exporting Build - Dark - Small
start /WAIT "Title" "c:\Program Files\Inkscape\inkscape.exe" SVGs\KeyboardLayout-Build-Dark.svg --export-png=PNGs\KeyboardLayout-Build-Dark_Small.png --export-width=480
@echo Exporting PDFs
@echo Exporting Flight
start /WAIT "Title" "c:\Program Files\Inkscape\inkscape.exe" SVGs\KeyboardLayout-Flight.svg --export-pdf=PDFs\KeyboardLayout-Flight_Hires.pdf --export-dpi=300
@echo Exporting Flight - Dark
start /WAIT "Title" "c:\Program Files\Inkscape\inkscape.exe" SVGs\KeyboardLayout-Flight-Dark.svg --export-pdf=PDFs\KeyboardLayout-Flight-Dark_Hires.pdf --export-dpi=300
@echo Exporting Build
start /WAIT "Title" "c:\Program Files\Inkscape\inkscape.exe" SVGs\KeyboardLayout-Build.svg --export-pdf=PDFs\KeyboardLayout-Build_Hires.pdf --export-dpi=300
@echo Exporting Build - Dark
start /WAIT "Title" "c:\Program Files\Inkscape\inkscape.exe" SVGs\KeyboardLayout-Build-Dark.svg --export-pdf=PDFs\KeyboardLayout-Build-Dark_Hires.pdf --export-dpi=300
@echo Done
pause