djbryson has asked for the wisdom of the Perl Monks concerning the following question:
use strict; #use gd; print "\nRunning Barcode... \n\n"; my $text = "333"; use Barcode::Code128 'FNC1'; my $object = new Barcode::Code128; $object->text(FNC1.'00000123455555555558'); $object->png($text); open(PNG, ">h:/perl/code128.png") or die "Can't write code128.png: $!\ +n"; binmode(PNG); print PNG $object->png("CODE 128"); close(PNG);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: help with Barcode::Code128
by gmargo (Hermit) on Nov 06, 2009 at 16:54 UTC | |
by Anonymous Monk on Oct 24, 2011 at 08:50 UTC | |
by Corion (Patriarch) on Oct 24, 2011 at 08:54 UTC | |
by AATG_PERL_1010 (Initiate) on Oct 24, 2011 at 09:11 UTC | |
by Corion (Patriarch) on Oct 24, 2011 at 09:13 UTC | |
|