in reply to Re: Need some help with GD::Barcode::UPCE module
in thread Need some help with GD::Barcode::UPCE module
#!/usr/bin/perl use strict; use warnings; use GD::Barcode::Code39; my $oGdBar = GD::Barcode->new( 'Code39', '*123-456789*' ); print "PTN:", $oGdBar->{text}, ':', $oGdBar->barcode(), "\n"; open OUT, '>', '/tmp/Code39.png'; binmode OUT; print OUT $oGdBar->plot->png; close OUT; undef $oGdBar;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Need some help with GD::Barcode::UPCE module
by vendion (Scribe) on Oct 11, 2010 at 18:56 UTC | |
by Khen1950fx (Canon) on Oct 11, 2010 at 19:36 UTC | |
by vendion (Scribe) on Oct 14, 2010 at 04:37 UTC | |
by BrowserUk (Patriarch) on Oct 14, 2010 at 05:58 UTC |