File: render_barcode.inx

package info (click to toggle)
inkscape 0.47.0-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 122,072 kB
  • ctags: 46,938
  • sloc: cpp: 349,791; ansic: 31,306; python: 14,868; xml: 6,613; sh: 5,041; makefile: 1,773; perl: 1,486; asm: 675; ruby: 148
file content (29 lines) | stat: -rw-r--r-- 1,185 bytes parent folder | download
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
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
  <_name>Barcode</_name>
  <id>org.inkscape.render.barcode</id>
  <dependency type="executable" location="extensions">inkex.py</dependency>
  <dependency type="executable" location="extensions">render_barcode.py</dependency>
  <param name="type" type="enum" _gui-text="Barcode Type:">
    <item value="ean8">EAN8</item>
    <item value="ean13">EAN13</item>
    <item value="upca">UPC-A</item>
    <item value="upce">UPC-E</item>
    <item value="code39">Code39</item>
    <item value="code39ext">Code39Ext</item>
    <item value="code93">Code93</item>
    <item value="code128">Code128</item>
    <item value="rm4scc">RM4CC / RM4SCC</item>
  </param>
  <param name="text" type="string" _gui-text="Barcode Data:"></param>
  <param name="height" type="int" _gui-text="Bar Height:" min="20" max="80">30</param>
  <effect>
    <object-type>all</object-type>
    <effects-menu>
      <submenu _name="Render"/>
    </effects-menu>
  </effect>
  <script>
    <command reldir="extensions" interpreter="python">render_barcode.py</command>
  </script>
</inkscape-extension>