Page 1 of 1

Will librsvg help with creating SVG output?

Posted: 2009-03-04T12:33:15-07:00
by rmagick
When converting an MVG input file to SVG output, will librsvg help? Or is librsvg strictly for use with SVG input files?

Re: Will librsvg help with creating SVG output?

Posted: 2009-03-04T12:54:43-07:00
by magick
SVG is rendered with librsvg if its available. MVG is rendered with the internal drawing engine. It would be quite a simple task to convert MVG to SVG since MVG is derived from SVG. Something like
  • MVGtoSVG slide.mvg slide.svg
    convert slide.svg slide.png

Re: Will librsvg help with creating SVG output?

Posted: 2009-03-04T15:41:58-07:00
by rmagick
Thanks!