Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: the proper way of barcode rendering/printing

by Khen1950fx (Canon)
on Sep 12, 2011 at 12:17 UTC ( [id://925458]=note: print w/replies, xml ) Need Help??


in reply to the proper way of barcode rendering/printing

Here's a script that I used for Code93:
#!/usr/bin/perl use strict; use warnings; use GD::Barcode::Code93; my $oGdBar; $oGdBar = GD::Barcode->new('Code93', 'text'); binmode(STDOUT); print "Content-Type: image/png\n\n"; open OUT, '>', 'Code93.png'; print OUT $oGdBar->plot->png; close OUT; undef $oGdBar;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://925458]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (7)
As of 2024-04-23 13:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found