diff options
| author | theAdib <theAdib@users.sourceforge.net> | 2009-04-10 19:48:07 +0000 |
|---|---|---|
| committer | theAdib <theAdib@users.sourceforge.net> | 2009-04-10 19:48:07 +0000 |
| commit | 5c42789042a0961465ddb21550f51c8a35e71018 (patch) | |
| tree | a5caa4d9b2de110639870db933f7cec76398138e | |
| parent | Whitespace cleanup (diff) | |
| download | inkscape-5c42789042a0961465ddb21550f51c8a35e71018.tar.gz inkscape-5c42789042a0961465ddb21550f51c8a35e71018.zip | |
add support for wmf-output using the uniconvertor (as used for the wmf-input
(bzr r7679)
| -rw-r--r-- | share/extensions/Makefile.am | 1 | ||||
| -rw-r--r-- | share/extensions/wmf_output.inx | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/share/extensions/Makefile.am b/share/extensions/Makefile.am index e168082d8..c4ab06ac0 100644 --- a/share/extensions/Makefile.am +++ b/share/extensions/Makefile.am @@ -237,6 +237,7 @@ modules = \ web-transmit-att.inx \ whirl.inx \ wmf_input.inx \ + wmf_output.inx \ xaml2svg.inx diff --git a/share/extensions/wmf_output.inx b/share/extensions/wmf_output.inx new file mode 100644 index 000000000..01816e28f --- /dev/null +++ b/share/extensions/wmf_output.inx @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension"> + <_name>Windows Metafile Input</_name> + <id>org.inkscape.output.wmf</id> + <dependency type="executable" location="extensions">uniconv-ext.py</dependency> + <output> + <extension>.wmf</extension> + <mimetype>application/x-wmf</mimetype> + <_filetypename>Windows Metafile (*.wmf)</_filetypename> + <_filetypetooltip>A popular graphics file format for clipart</_filetypetooltip> + </output> + <script> + <command reldir="extensions" interpreter="python">uniconv-ext.py</command> + </script> +</inkscape-extension> |
