The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

XML::LibRSVG - Interface to gnome's librsvg

SYNOPSIS

  use XML::LibRSVG;

  my $rsvg = XML::LibRSVG->new();
  my $png = $rsvg->png_from_file($filename);
  my $larger_png = $rsvg->png_from_file_at_zoom($filename, 2);
  my $smaller_png = $rsvg->png_from_file_at_size($filename, 40, 40);
  $rsvg->write_png_from_file($svg, $output_file);
  $rsvg->write_png_from_file_at_zoom($svg, $of, 2);
  $rsvg->write_png_from_file_at_size($svg, $of, 40, 40);

DESCRIPTION

At the moment all this module allows you to do is convert SVG's to PNG's in various ways. Enjoy :-)

AUTHOR

Matt Sergeant, matt@sergeant.org

SEE ALSO

XML::LibXML