3 # Copyright 2014 ByWater Solutions
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 use C4
::Auth
qw(check_cookie_auth);
29 /cgi-bin/koha/svc/barcode
33 This service generates a PNG barcode image for the requested barcode.
41 I<barcode> is the desired barcode. It should be called like:
45 I<type> is the desired barcode type. Possible values are
59 If ommited,it defaults to Code39.
67 =item /cgi-bin/koha/svc/barcode?barcode=123456789
69 Returns a Code39 barcode image for barcode 123456789
71 =item /cgi-bin/koha/svc/barcode?barcode=123456789&type=UPCE
73 Returns a UPCE barcode image for barcode 123456789
79 my ( $auth_status, $sessionID ) = check_cookie_auth
( $input->cookie('CGISESSID'), { catalogue
=> '*' } );
81 if ( $auth_status ne "ok" ) {
87 my $type = $input->param('type') || 'Code39';
88 my $barcode = $input->param('barcode');
92 $image = GD
::Barcode
->new( $type, $barcode )->plot()->png();
96 # problem creating image
97 print header
( -status
=> 500 );
99 print header
('image/png');
107 Kyle M Hall <kyle@bywatersolutions.com>