blob: 7aae6696b2680fd68e3d0416b67870c0a25c0ead (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension translationdomain="inkstitch" xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<name>PNG file output (realistic)</name>
<id>org.{{ id_inkstitch }}.png_realistic</id>
<output is_exported="true">
<extension>.png</extension>
<mimetype>image/png</mimetype>
<filetypename>{{ menu_inkstitch }}: Portable Network Graphics (Realistic) [IMAGE] (.png)</filetypename>
<filetypetooltip>Create a PNG file with a realistic embroidery representation using Ink/Stitch</filetypetooltip>
<dataloss>true</dataloss>
</output>
<param name="extension" type="string" gui-hidden="true">png_realistic</param>
<param name="notebook" type="notebook">
<page name="settings" gui-text="Settings">
<param name="dpi" type="int" min="100" max="2000" gui-text="DPI">300</param>
</page>
<page name="info" gui-text="Help">
<label appearance="header">PNG file export</label>
<label>Export embroidery design to PNG</label>
<spacer />
<separator />
<spacer />
<label>Read more on our website</label>
<label appearance="url">https://inkstitch.org/docs/import-export/</label>
</page>
</param>
<script>
{{ command_tag | safe }}
</script>
</inkscape-extension>
|