converting paths to layers

Discussion about writing code for Inkscape.
hulf2012
Posts: 716
Joined: Sat Nov 24, 2012 12:37 pm

converting paths to layers

Postby hulf2012 » Fri Dec 07, 2012 10:57 am

Hello

Explanation
When you use the TRACE BITMAP tool, if you choose multiple paths, all the paths are in one group. But i thought that it could be usefull put each path in a sublayer, so in that way they can be hidden, erased or modified in a more convenient way.

So, i made this extension, based in the extension "grouptolayer",( written by Rob Antonishen ),and using the inkex.py and lxml.py (etree) modules dfor python 2.6.

As you must now, in windows you must copy both files in the extensions carpet that is in \inkscape\share\extensions


paths2layers.inx

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
    <_name>Selected Paths to Layers</_name>
    <id>org.inkscape.filter.paths2layers</id>
   <dependency type="executable" location="extensions">paths2layers.py</dependency>
   <dependency type="executable" location="extensions">inkex.py</dependency>
    <effect>
   <object-type>path</object-type>
   <effects-menu>
      <submenu _name="Convert Paths to Layers"/>
   </effects-menu>
   </effect>
    <script>
        <command reldir="extensions" interpreter="python">paths2layers.py</command>
    </script>
</inkscape-extension>


paths2layers.py

Code: Select all

#!/usr/bin/env python


"""
MODIFIED BY: H. Lazo 2012

Copyright (C) 2007-2012 Rob Antonishen; rob.antonishen@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

"""
import inkex, os, csv, math

"""
PATHS2GROUPS : To use when you vectorize a raster image with the multiple pass option. You get a group
with multiple paths with different fill attributes. Then you can convert the groups to layers with the extension
group2layer
"""

class paths2groups(inkex.Effect):
   def __init__(self):
      inkex.Effect.__init__(self)

   def effect(self):
      # THE SELECTED GROUP
      # sltd=self.selected
      
      for elem in self.selected.itervalues():
         # Only to check that there is only 1 group
         inkex.errormsg(str(self.selected))
         father=self.getParentNode(elem)
         children=elem.getchildren()
         if  children != None:
            for node in children:
               if node.tag == inkex.addNS('path','svg'):
                  
                  #print(node.get("id"))
                  #group =inkex.etree.SubElement(root, inkex.addNS('g','svg'))
                  group =inkex.etree.SubElement(elem, inkex.addNS('g','svg') )
                  group.set("id", "lyr_"+node.get("id")[4:])
                  group.append(node)
                  
                  if group.tag == inkex.addNS('g','svg'):
                     group.set(inkex.addNS("label","inkscape"), group.get(inkex.addNS("id")))
                     group.set(inkex.addNS("groupmode","inkscape"), "layer")
                     father.append(group)
         father.remove(elem)

if __name__ == '__main__':
    e = paths2groups()
    e.affect()


# vim: expandtab shiftwidth=4 tabstop=8 softtabstop=4 encoding=utf-8 textwidth=99
If you have problems:
1.- Post a sample (or samples) of your file please.
2.- Please check here:
http://tavmjong.free.fr/INKSCAPE/MANUAL/html/index.html
3.- If you manage to solve your problem, please post here your solution.

User avatar
ragstian
Posts: 1181
Joined: Thu Oct 11, 2012 2:44 am
Location: Stavanger-Norway

Re: converting paths to layers

Postby ragstian » Fri Dec 07, 2012 2:03 pm

Hi.

Absolutely fantastic!
Have been "wanting" this function for a while.

RGDS Ragnar
Good Luck!
( ͡° ͜ʖ ͡°)
RGDS
Ragnar

User avatar
brynn
Posts: 10309
Joined: Wed Sep 26, 2007 4:34 pm
Location: western USA
Contact:

Re: converting paths to layers

Postby brynn » Sun Dec 09, 2012 3:52 pm

How can "average" Inkscape users access this? I know a lot of people like to use Inkscape to make t-shirt designs, and often need each traced color on a different layer. But in order to recommend this to them, I would need to know how to use it. And that's not obvious to me (a very average Inkscape user). Will it be in a future Inkscape release?

hulf2012
Posts: 716
Joined: Sat Nov 24, 2012 12:37 pm

Re: converting paths to layers

Postby hulf2012 » Mon Dec 10, 2012 6:55 am

Hello

Thanks for the comments

Brynn, i will try to explain the procedure
00.- Copy the .inx and.py file in your inkscape extensions carpet. In my system (W1N 7) is in \inkscape\share\extensions
0.- After you use Trace Bitmap ->Multiple Scans -> Colors or ->Grays, a Group of several paths is created.
1.- Select the Group
2.- Call the extension in Extensions -> paths2layers
3.- Now, if you have selected the Group, the extension should separate each path in the group in one diferent sub layer, if the Group is in a layer. If the Group is in the root each path will be separated in an individul layer.

- Observe that a path is formed by several paths combined, representing one color of the traced bitmap. The extension does not separate the combined path.
- May occur errors if the selection is not one group and only one group that is not put in a layer or the root of the document.

- I don't know if this extension will be in future releases. I also think that I'm an "average" user. I will be honored if It is included. Just want to be recognized as author of this tiny and imperfect piece of code.

- By the way, I've downloaded and instaled the 0.49 dev version,and i must say that it has some interesting improvements, like the posibility of find and select separated types of elements. In other posts on this forum I read that it will be changes about the posibility of adding scripts to inkscape, perhaps 'macros' as M$ 0ff1ce? . Maybe i'm wrong there. Or maybe the extension soon will be deprecated!!.

Glad to answer Any doubt or comment
If you have problems:
1.- Post a sample (or samples) of your file please.
2.- Please check here:
http://tavmjong.free.fr/INKSCAPE/MANUAL/html/index.html
3.- If you manage to solve your problem, please post here your solution.


Return to “Programming”