blob: 4f9f2385be237cd8eaeb839083d50569d1841a92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<name>Extract Image</name>
<id>org.inkscape.filter.extract_image</id>
<param name="selectedonly" type="bool" gui-text="Extract only selected images">true</param>
<param name="filepath" type="string" gui-text="Path to save image:">./images/</param>
<effect needs-live-preview="false">
<object-type>all</object-type>
<effects-menu>
<submenu name="Images"/>
</effects-menu>
</effect>
<script>
<command location="inx" interpreter="python">extractimage.py</command>
</script>
</inkscape-extension>
|