This repository has been archived on 2023-03-25. You can view files and clone it, but cannot push or open issues or pull requests.
mightyscape-1.1-deprecated/extensions/fablabchemnitz_export_layers.inx
2020-08-19 13:22:31 +02:00

51 lines
3.4 KiB
XML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<name>Export Layers</name>
<id>net.buschbeck.inkscape.exportlayers</id>
<param name="tab" type="notebook">
<page name="export" gui-text="Export">
<param name="include-locked-layers" type="bool" gui-text="Include locked layers">false</param>
<param name="include-hidden-layers" type="bool" gui-text="Include hidden layers">false</param>
<param name="viewbox" type="optiongroup" appearance="combo" gui-text="Exported viewbox">
<option value="drawing">Entire drawing</option>
<option value="content">Visible content</option>
</param>
<param name="dir" type="path" mode="folder" gui-text="Directory" />
<param name="file-prefix" type="string" gui-text="File prefix" />
<param name="subdirs" type="bool" gui-text="Create subdirectories for nested layers">true</param>
<param name="overwrite" type="bool" gui-text="Overwrite existing exports">true</param>
</page>
<page name="compat" gui-text="Compatibility">
<param name="compat-resolution" type="bool" gui-text="Improve accuracy of shape positioning and formatting">false</param>
<param name="compat-baseline-shift" type="bool" gui-text="Force Inkscape subscript and superscript positioning">false</param>
<param name="compat-paint-order" type="bool" gui-text="Work around missing support for paint-order">false</param>
<param name="compat-stroke-dashoffset" type="bool" gui-text="Work around missing support for stroke-dashoffset">false</param>
<param name="compat-stroke-width" type="bool" gui-text="Ensure minimum stroke-width">false</param>
<label indent="2">Resize exported drawings to ensure lines have a thickness of no less than one unit at 96DPI. Some apps impose this lower limit on line thickness; resizing everything keeps proportions intact.</label>
<label indent="2">You can resize the drawing back down to its intended original size without loss after importing it into the target app.</label>
</page>
<page name="about" gui-text="About">
<label appearance="header">Export</label>
<label>Exports each layer into a separate self-contained SVG file.</label>
<label>The files are named after the layer's label with an optional prefix. For nested layers, parent layer labels are included before the prefix, or they can be made into subdirectories.</label>
<label appearance="header">Compatibility</label>
<label>Workarounds for SVG rendering limitations in third-party software like Microsoft Office.</label>
<label appearance="header">Author</label>
<hbox>
<label>Michael Buschbeck</label>
<label appearance="url">michael@buschbeck.net</label>
</hbox>
</page>
</param>
<effect needs-live-preview="false">
<object-type>all</object-type>
<effects-menu>
<submenu name="FabLab Chemnitz">
<submenu name="Import/Export/Transfer"/>
</submenu>
</effects-menu>
</effect>
<script>
<command location="inx" interpreter="python">fablabchemnitz_export_layers.py</command>
</script>
</inkscape-extension>