- or download this
# encode string $code as codabar image $bar
my $bar = makebarcode ($code); # Working! Thank you!
...
# Don't work neither.
$gfx->xo_codabar($bar, $x, $y, $scale, $frame)
- or download this
$gfx->image($bar, $x, $y, $scale);
- or download this
# Works!
$gfx->formimage($bar, $x, $y, $scale);