Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > c533b31392175c2609210561ff8ebf29 > files > 9

perl-SVG-2.840.0-2.mga7.noarch.rpm

#!/usr/bin/perl

use strict;
use warnings;

use SVG;

# create an SVG object with a size of 40x40 pixels
my $svg = SVG->new(
    width  => 40,
    height => 40,
);

# add a circle
$svg->circle(
    cx => 20,
    cy => 20,
    r  => 18,
);


# now render the SVG object, implicitly use svg namespace
print $svg->xmlify, "\n";