summaryrefslogtreecommitdiffstats
path: root/share/extensions/scour.inx
blob: e5b6e90f544798d4312024e9a398775f3c593b8b (plain)
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
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
    <_name>Optimized SVG Output</_name>
    <id>org.inkscape.output.scour</id>
    <dependency type="executable" location="extensions">scour.py</dependency>
    <dependency type="executable" location="extensions">svg_regex.py</dependency>
    <dependency type="executable" location="extensions">yocto_css.py</dependency>
    <param name="tab" type="notebook">
        <page name="Options" _gui-text="Options">            
            <param name="simplify-colors"  type="boolean" _gui-text="Simplify colors">true</param>
            <param name="style-to-xml"  type="boolean" _gui-text="Style to xml">true</param>
            <param name="group-collapsing"  type="boolean" _gui-text="Group collapsing">true</param>
            <param name="enable-id-stripping"  type="boolean" _gui-text="Enable id stripping">false</param>
            <param name="embed-rasters"  type="boolean" _gui-text="Embed rasters">true</param>
            <param name="keep-editor-data"  type="boolean" _gui-text="Keep editor data">false</param>
            <param name="enable-viewboxing" type="boolean" _gui-text="Enable viewboxing">false</param>
            <param name="strip-xml-prolog"  type="boolean" _gui-text="Strip xml prolog">false</param>
            <param name="set-precision"  type="int" _gui-text="Set precision">5</param>
      	    <param name="indent" type="enum" _gui-text="Indent">
                <_item value="space">Space</_item>
                <_item value="tab">Tab</_item>
                <_item value="none">None</_item>
            </param>
        </page>
        <page name="Help" _gui-text="Help">
            <_param name="instructions" type="description" xml:space="preserve">This extension optimizes the SVG file according to the following options:
    * Simplify colors: convert all colors to #RRGGBB format.
    * Style to xml: convert styles into XML attributes.
    * Group collapsing: collapse group elements.
    * Enable id stripping: remove all un-referenced ID attributes.
    * Embed rasters: embed rasters as base64-encoded data.
    * Keep editor data: don't remove Inkscape, Sodipodi or Adobe Illustrator elements and attributes.
    * Enable viewboxing: size image to 100%/100% and introduce a viewBox.
    * Strip xml prolog: don't output the xml prolog.
    * Set precision: set number of significant digits (default: 5).
    * Indent: indentation of the output: none, space, tab (default: space).</_param>
        </page>
    </param>        
    <output>
        <extension>.svg</extension>
        <mimetype>image/svg+xml</mimetype>
        <_filetypename>Optimized SVG (*.svg)</_filetypename>
        <_filetypetooltip>Scalable Vector Graphics</_filetypetooltip>
    </output>
    <script>
        <command reldir="extensions" interpreter="python">scour.inkscape.py</command>
    </script>
</inkscape-extension>