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

NAME

IUP::Canvas::SVG - [special] 2D drawing canvas storing the result into SVG file

SYNOPSIS

 use IUP::Constants ':cd';
 use IUP::Canvas::SVG;

 my $cnv = IUP::Canvas::SVG->new(filename=>"tmp_test.svg", width=>400, height=>400);

 $cnv->cdForeground(CD_RED);
 $cnv->cdBox(0, 200, 0, 400);

 $cnv->cdForeground(CD_BLACK);
 $cnv->cdLineStyle(CD_DOTTED);
 $cnv->cdArc(200,200,180,380,0,360);

 $cnv->cdKillCanvas;

DESCRIPTION

IUP::Canvas::SVG is derived from IUP::Canvas and offers all 2D drawing related methods:

SEE ALSO

IUP::Canvas, IUP::Canvas::EMF

8 POD Errors

The following errors were encountered while parsing the POD:

Around line 39:

alternative text 'Methods - Primitives / Marks' contains non-escaped | or /

Around line 41:

alternative text 'Methods - Primitives / Lines' contains non-escaped | or /

Around line 43:

alternative text 'Methods - Primitives / Polygons' contains non-escaped | or /

Around line 45:

alternative text 'Methods - Primitives / Filled Areas' contains non-escaped | or /

Around line 47:

alternative text 'Methods - Primitives / Text' contains non-escaped | or /

Around line 49:

alternative text 'Methods - Primitives / Vector Text' contains non-escaped | or /

Around line 51:

alternative text 'Methods - Primitives / Client Images' contains non-escaped | or /

Around line 53:

alternative text 'Methods - Primitives / Server Images' contains non-escaped | or /