small change in inx

This commit is contained in:
Mario Voigt 2021-10-11 20:32:10 +02:00
parent bc69b6fdb7
commit f635098935
1 changed files with 37 additions and 37 deletions

View File

@ -1,44 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension"> <inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<name>Pixel2SVG</name> <name>Pixel2SVG</name>
<id>fablabchemnitz.de.pixel2svg</id> <id>fablabchemnitz.de.pixel2svg</id>
<param name="tab" type="notebook"> <param name="tab" type="notebook">
<page name="pixel2svg_tab" gui-text="Options"> <page name="pixel2svg_tab" gui-text="Options">
<param name="squaresize" type="int" min="1" max="100" gui-text="Width and height of vector squares in pixels">5</param> <param name="squaresize" type="int" min="1" max="100" gui-text="Width and height of vector squares in pixels">5</param>
<param name="offset_image" type="bool" gui-text="Offset traced image">true</param> <param name="offset_image" type="bool" gui-text="Offset traced image">true</param>
<param name="delete_image" type="bool" gui-text="Delete bitmap image">false</param> <param name="delete_image" type="bool" gui-text="Delete bitmap image">false</param>
</page> </page>
<page name="advanced_tab" gui-text="Advanced"> <page name="advanced_tab" gui-text="Advanced">
<param name="transparency" type="bool" gui-text="Convert transparency to 'fill-opacity'">true</param> <param name="transparency" type="bool" gui-text="Convert transparency to 'fill-opacity'">true</param>
<param name="overlap" type="bool" gui-text="Overlap vector squares by 1px">false</param> <param name="overlap" type="bool" gui-text="Overlap vector squares by 1px">false</param>
<param name="verbose" type="bool" gui-text="Report image info (size, format, mode)">false</param> <param name="verbose" type="bool" gui-text="Report image info (size, format, mode)">false</param>
<param name="maxsize" type="int" min="1" max="10000" gui-text="Max. image size (width or height)">256</param> <param name="maxsize" type="int" min="1" max="10000" gui-text="Max. image size (width or height)">256</param>
</page> </page>
<page name="advanced_color_tab" gui-text="Colors"> <page name="advanced_color_tab" gui-text="Colors">
<param name="color_mode" type="optiongroup" appearance="combo" gui-text=" "> <param name="color_mode" type="optiongroup" appearance="combo" gui-text=" ">
<option value="all">Trace all colors.</option> <option value="all">Trace all colors.</option>
<option value="other">Don't trace this color:</option> <option value="other">Don't trace this color:</option>
<option value="this">Only trace this color:</option> <option value="this">Only trace this color:</option>
</param> </param>
<param name="color" type="string" max_length="6" gui-text="Color (hex):">FFFFFF</param> <param name="color" type="string" max_length="6" gui-text="Color (hex):">FFFFFF</param>
</page> </page>
<page name="about_tab" gui-text="About"> <page name="about_tab" gui-text="About">
<label xml:space="preserve">This extension is based on: <label xml:space="preserve">This extension is based on:
pixel2svg - converts pixel art to SVG - pixel by pixel. pixel2svg - converts pixel art to SVG - pixel by pixel.
Copyright 2011 Florian Berger Copyright 2011 Florian Berger
http://florian-berger.de/en/software/pixel2svg http://florian-berger.de/en/software/pixel2svg
</label> </label>
</page> </page>
</param> </param>
<effect needs-document="true" needs-live-preview="true"> <effect needs-document="true" needs-live-preview="true">
<object-type>all</object-type> <object-type>all</object-type>
<effects-menu> <effects-menu>
<submenu name="FabLab Chemnitz"> <submenu name="FabLab Chemnitz">
<submenu name="Tracing/Edge Detection"/> <submenu name="Tracing/Edge Detection" />
</submenu> </submenu>
</effects-menu> </effects-menu>
</effect> </effect>
<script> <script>
<command location="inx" interpreter="python">pixel2svg.py</command> <command location="inx" interpreter="python">pixel2svg.py</command>
</script> </script>
</inkscape-extension> </inkscape-extension>