File: media_zip.inx

package info (click to toggle)
inkscape 1.4.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 402,900 kB
  • sloc: cpp: 547,256; python: 72,677; ansic: 63,355; javascript: 3,864; xml: 2,345; sh: 1,667; makefile: 824; perl: 614
file content (19 lines) | stat: -rw-r--r-- 995 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
  <name>Compressed Inkscape SVG with media export</name>
  <id>org.inkscape.output.compressed_media</id>
  <dependency type="extension">org.inkscape.output.svg.inkscape</dependency>
  <param name="image_dir" type="string" gui-text="Image zip directory:">images</param>
  <param name="font_list" type="bool" gui-text="Add font list">false</param>
  <output priority='6'>
    <extension>.zip</extension>
    <mimetype>application/x-zip</mimetype>
    <filetypename>Compressed Inkscape SVG with media (*.zip)</filetypename>
    <filetypetooltip>Inkscape's native file format compressed with Zip and including all media files</filetypetooltip>
    <dataloss>false</dataloss>
  </output>
  <script>
    <command location="inx" interpreter="python">media_zip.py</command>
    <helper_extension>org.inkscape.output.svg.inkscape</helper_extension>
  </script>
</inkscape-extension>