No::Giro is a Perl module that provides some methods to enter data into a standard F60-1 GIRO slip. This is an A4 sheet with a standard layout and where data are entered at the bottom and there is some space to enter any information at the top. It returns an Encapsulated Postscript object that can be used in a Postscript document, which again is suitable to be printed.
SYNOPSIS
use No::Giro;
use PostScript::Simple;
my $p = new PostScript::Simple(papersize => "A4",
colour => 0,
eps => 0,
units => "mm");
$p->newpage;
my $giro = new No::Giro;
$giro->kid(242345);
$giro->belop(4534);
$giro->tilkonto(12345678901);
$giro->bettil(["Payme", 'Somewhere', '4932 Place']);
my $e = $giro->eps;
$p->importeps($e, 0,0);
$p->output("giro.ps");
Requirements:
· Perl