NAME
IUP::Canvas::FileVector - [special] 2D drawing canvas storing the result into vector image file (SVG, EMF, ...)
SYNOPSIS
use IUP::Constants ':cd';
use IUP::Canvas::FileVector;
my $cnv = IUP::Canvas::FileVector->new(format=>"SVG", 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::FileVector is derived from IUP::Canvas and offers all 2D drawing related methods:
SEE ALSO
IUP::Canvas, IUP::Canvas::FileBitmap
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 /