blob: e309bd0f410767789427b1338951f1e064990e1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<_name>SVGZ Output</_name>
<id>org.inkscape.output.SVGZ</id>
<dependency type="extension">org.inkscape.output.svg.inkscape</dependency>
<dependency type="executable">gzip</dependency>
<output>
<extension>.svgz</extension>
<mimetype>image/x-svgz</mimetype>
<_filetypename>Compressed Inkscape SVG (*.svgz)</_filetypename>
<_filetypetooltip>Inkscape's native file format compressed with GZip</_filetypetooltip>
<dataloss>false</dataloss>
</output>
<script>
<command reldir="path">gzip -c</command>
<helper_extension>org.inkscape.output.svg.inkscape</helper_extension>
</script>
</inkscape-extension>
|