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