Difference between revisions of "Doc talk:Svg2synfig"

From Synfig Studio :: Documentation
Jump to: navigation, search
m (moved Talk:Svg2synfig to Doc talk:Svg2synfig: This is a manual page so it must be in the doc namespace)
(No difference)

Revision as of 17:56, 14 February 2011

New Doc Thoughts

  • I would remove the details of all those special solutions to an experts section and only keep a description of svg import via caret>file>import. --Ohoservices 11:25, 23 May 2010 (UTC)


Old messages

(will be removed if nobody contradicts)

fail to get the transform working. This is on a current debian-unstable system with Saxon 9.0.0.1J from Saxonica. The command saxonb-xslt -ext:on -xsl:svg2synfig.xsl Zeichnung.svg will output an empty sif. Input contains below code, which should contain only supported paths, doesnt it?
It converts successfully with the Saxon 9.0.0.2J on Windows --Dmd 19:06, 14 March 2008 (EDT)


<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   version="1.0"
   width="100"
   height="100"
   id="svg">
  <defs
     id="defs" />
  <g
     id="layer">
    <path
       d="M 50,75 C 0,100 0,0 50,25 C 100,0 100,100 50,75 z "
       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       id="path" />
  </g>
</svg>