Thread Barcode für Code39 erstellen und als Grafik speichern (5 answers)
Opened by namenlose at 2013-11-13 11:59

namenlose
 2013-11-13 12:50
#172042 #172042
User since
2013-10-30
4 Artikel
BenutzerIn
[default_avatar]
Danke! Hat geklappt.

Code: (dl )
1
2
3
4
5
6
7
use GD::Barcode::Code39;

my $filename = "code39.png";
open(my $png, ">", $filename) || die("Cannnot open $filename: $!");
print $png GD::Barcode::Code39->new('*CODE39IMG*')->plot->png;
binmode($png);
close($png);

View full thread Barcode für Code39 erstellen und als Grafik speichern