Search found 5 matches
- Wed Jun 01, 2011 9:03 am
- Forum: Programming
- Topic: [Solved] How to move each group to a new created layer
- Replies: 7
- Views: 5785
Re: How to move each group to a new created layer
Great :) , It's so easy to do. I summarize (case of an SVG file that has one layer) : 1- Create groups 2- In a text editor, remove : <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" ... > and the last </g> 3- replace all : <g with : <g inkscape:groupmo...
- Tue May 31, 2011 8:57 pm
- Forum: Programming
- Topic: [Solved] How to move each group to a new created layer
- Replies: 7
- Views: 5785
Re: How to move each group to a new created layer
Layers are (technically) groups in Inkscape. You just need to add <i>inkscape:groupmode="layer"</i> attribute to each group <g> node. Any language that can open an xml file and process it should be able to handle the task (outside of inkscape). -Rob A> Thanks ! Happy to find a solution ea...
- Wed May 25, 2011 11:38 am
- Forum: Programming
- Topic: [Solved] How to move each group to a new created layer
- Replies: 7
- Views: 5785
[Solved] How to move each group to a new created layer
Salam for all,
For example :
Input SVG : One layer (root) with n groups
Output SVG : n layer (each layer contains one group
There is a simple way to do it with python ? python/xml ?
Thanks and best regards
For example :
Input SVG : One layer (root) with n groups
Output SVG : n layer (each layer contains one group
There is a simple way to do it with python ? python/xml ?
Thanks and best regards
- Sun Apr 03, 2011 10:18 am
- Forum: Help with using Inkscape
- Topic: How to select all objects with undefined fill color ?
- Replies: 2
- Views: 1112
Re: How to select all objects with undefined fill color ?
Thanks
After following those steps, remaining texts groupes have two fill color, so it was so easy to select and remove them.
My map is now without labels !
After following those steps, remaining texts groupes have two fill color, so it was so easy to select and remove them.
My map is now without labels !
- Sat Apr 02, 2011 4:12 am
- Forum: Help with using Inkscape
- Topic: How to select all objects with undefined fill color ?
- Replies: 2
- Views: 1112
How to select all objects with undefined fill color ?
Salam for all, I want to dlete all texts in this file : http://commons.wikimedia.org/wiki/File:Map_of_Brazil_%28Lithuanian%29.svg Find/text return nothing, texte were converted to paths (with undefined fill color). I like to try to select all objects with undefined fill color. How to do it ? Thanks ...