#!/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;
In reply to Re: the proper way of barcode rendering/printing
by Khen1950fx
in thread the proper way of barcode rendering/printing
by AlexTape
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |