Spreadsheet-WriteExcel
(2.03)
1.It's a need for generating Charts and Graphs !
2.In rest it offers a lot for generation excel files, and with good documented functions.
Some usefull functions for insert_bitmap():
sub width_pixels2excelunits {
my $pxs=$_[0];
my $exu;
if (int($pxs/12+0.7)<1) {
$exu=int($pxs/12+0.7);
} else {
$exu=int(($pxs-5)/7+0.7);
}
return ($exu);
}
sub height_pixels2excelunits {
my $pxs=$_[0];
my $exu=int($pxs*3/4+0.7);
return ($exu);
}
phil_bv - 2004-08-16T23:45:11 (permalink)
2 out of 2 found this review helpful.
Was this review helpful to you?
Yes
No

