Lines 42-49
I<barcode> is the desired barcode. It should be called like:
Link Here
|
42 |
|
42 |
|
43 |
=item I<type> |
43 |
=item I<type> |
44 |
|
44 |
|
45 |
I<type> is the desired barcode type. Possible values are TODO. If ommited, |
45 |
I<type> is the desired barcode type. Possible values are |
46 |
it defaults to Code39. |
46 |
Code39 |
|
|
47 |
UPCE |
48 |
UPCA |
49 |
QRcode |
50 |
NW7 |
51 |
Matrix2of5 |
52 |
ITF |
53 |
Industrial2of5 |
54 |
IATA2of5 |
55 |
EAN8 |
56 |
EAN13 |
57 |
COOP2of5 |
58 |
|
59 |
If ommited,it defaults to Code39. |
47 |
|
60 |
|
48 |
=back |
61 |
=back |
49 |
|
62 |
|
Lines 81-86
eval {
Link Here
|
81 |
|
94 |
|
82 |
if ( $@ ) { |
95 |
if ( $@ ) { |
83 |
# problem creating image |
96 |
# problem creating image |
|
|
97 |
warn $@; |
84 |
print header( -status => 500 ); |
98 |
print header( -status => 500 ); |
85 |
} else { |
99 |
} else { |
86 |
print header('image/png'); |
100 |
print header('image/png'); |
Lines 93-96
exit 0;
Link Here
|
93 |
|
107 |
|
94 |
Kyle M Hall <kyle@bywatersolutions.com> |
108 |
Kyle M Hall <kyle@bywatersolutions.com> |
95 |
|
109 |
|
96 |
=cut |
110 |
=cut |
97 |
- |
|
|