-
Notifications
You must be signed in to change notification settings - Fork 0
/
multipage_export.inx
37 lines (34 loc) · 1.67 KB
/
multipage_export.inx
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
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension>
<name>Multipage</name>
<id>hardpixel.eu.multipage_export</id>
<dependency type="executable" location="extensions">multipage_export.py</dependency>
<param name="description" type="description" indent="-1">Select a set of objects to export as single files.</param>
<param name="properties-title" type="description" appearance="header">Export Properties</param>
<param name="name-label" type="description" indent="-1">Base Name</param>
<param name="name" type="string" gui-text=""></param>
<param name="exporter-label" type="description" indent="-1">Exporter</param>
<param name="exporter" type="enum" gui-text="">
<item value="rsvg">RSVG (Faster, Inconsistent results)</item>
<item value="inkscape">Inkscape (Slower, Best results)</item>
</param>
<param name="format-label" type="description" indent="-1">File Format</param>
<param name="format" type="enum" gui-text="">
<item value="pdf">PDF</item>
<item value="png">PNG</item>
<item value="svg">SVG</item>
</param>
<param name="options-title" type="description" appearance="header">Options</param>
<param name="replace" type="boolean" gui-text="Replace existing files">false</param>
<param name="autoname" type="boolean" gui-text="Name files from object IDs">false</param>
<param name="combine" type="boolean" gui-text="Combine into single PDF">false</param>
<effect needs-live-preview="false">
<object-type>all</object-type>
<effects-menu>
<submenu _name="Export"/>
</effects-menu>
</effect>
<script>
<command reldir="extensions" interpreter="python">multipage_export.py</command>
</script>
</inkscape-extension>