giobis has asked for the wisdom of the Perl Monks concerning the following question:
#!/bin/perl -w use GD::Barcode::Code39; binmode(STDOUT); print "Content-Type: image/png\n\n"; print GD::Barcode::Code39->new('*CODE39IMG*')->plot->png; my $oGdBar = GD::Barcode::Code39->new('*123456789;*'); die $GD::Barcode::Code39::errStr unless($oGdBar); #Invalid Chara +cters
Can't locate object method "Small" via package "GD::Font" (perhaps you forgot to load "GD::Font"?) at /opt/perl/lib/site_perl/5.8.0/GD/Barcode/Code39.pm line 111.
My PERL version is v5.8.0 built for PA-RISC1.1-thread-multi I try to find GD::Font but I don't founded it. Any suggestion? Thanks giobis2006-10-25 Retitled by Corion, as per Monastery guidelines
Original title: 'GD-Barcode 39'
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: error message from GD::Barcode::Code39 module
by ww (Archbishop) on Oct 23, 2006 at 13:35 UTC | |
by giobis (Acolyte) on Oct 23, 2006 at 13:39 UTC | |
by ww (Archbishop) on Oct 23, 2006 at 13:50 UTC | |
Re: error message from GD::Barcode::Code39 module
by ChemBoy (Priest) on Oct 23, 2006 at 14:31 UTC | |
by giobis (Acolyte) on Nov 06, 2006 at 12:54 UTC | |
by giobis (Acolyte) on Nov 08, 2006 at 09:57 UTC | |
by Anonymous Monk on Oct 12, 2010 at 17:19 UTC | |
by Anonymous Monk on Oct 12, 2010 at 21:21 UTC |