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

NAME

SVG::Convert - The fantastic new SVG::Convert!

VERSION

version 0.02

SYNOPSIS

  use SVG::Convert;
  
  my $svgconv = SVG::Convert->new();
  print $svgconv->convert(format => "xaml", src_file => "examples/01.svg", output => "string");

METHODS

new

Constructor. The "$args" arguments is HASHREF. See below more details about $args.

driver_opts

The driver_opts parameter is HASHREF. The keys of HASHREF are lower-cased suffix of driver module name.

For example, If driver is SVG::Convert::XAML, then the key is "xaml". The values of HASHREF are parameter needed by each of drivers.

  my $sconv = SVG::Convert->new({
    driver_opts => {
      xaml => {
        ## for Driver::XAML
      }
    }
  });

convert(%args)

See below about %args details.

  my $xaml_doc = $sconv->convert(
    format => "xaml",
    src_file => $src_file,
    output => "doc"
  );
format

The format parameter is string value represented format type for converting. This value is lower-cased suffix of driver module name.

For example, If the driver module is SVG::Convert::Driver::XAML, then this value is "xaml".

src_file

The src_file parameter is string value represented SVG source file name.

src_string

The src_file parameter is string value represented SVG source string.

src_doc

The src_doc parameter is XML::LibXML::Document object value represented SVG source document.

output

The output parameter is "file" or "string" or "doc".

output_file

The output_file parameter is output filename.

convert_opts

The convert_opts parameter is extra params for driver.

SEE ALSO

Carp::Clan
Module::Load
Module::Pluggable::Fast
Params::Validate
Scalar::Util
XML::LibXML
SVG::Convert::Driver::XAML
SVG::Convert::Driver::PNG

AUTHOR

Toru Yamaguchi, <zigorou@cpan.org>

BUGS

Please report any bugs or feature requests to bug-svg-convert@rt.cpan.org, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

COPYRIGHT & LICENSE

Copyright 2007 Toru Yamaguchi, All Rights Reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.