@@ -, +, @@ --- svc/barcode | 20 +++++++++++++++++--- 1 files changed, 17 insertions(+), 3 deletions(-) --- a/svc/barcode +++ a/svc/barcode @@ -42,8 +42,21 @@ I is the desired barcode. It should be called like: =item I -I is the desired barcode type. Possible values are TODO. If ommited, -it defaults to Code39. +I is the desired barcode type. Possible values are +Code39 +UPCE +UPCA +QRcode +NW7 +Matrix2of5 +ITF +Industrial2of5 +IATA2of5 +EAN8 +EAN13 +COOP2of5 + +If ommited,it defaults to Code39. =back @@ -81,6 +94,7 @@ eval { if ( $@ ) { # problem creating image + warn $@; print header( -status => 500 ); } else { print header('image/png'); @@ -93,4 +107,4 @@ exit 0; Kyle M Hall -=cut +=cut --