Bugzilla – Attachment 35128 Details for
Bug 13545
Add barcode image generator service
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 13545 - Add barcode image generator service
Bug-13545---Add-barcode-image-generator-service.patch (text/plain), 2.43 KB, created by
Brandon
on 2015-01-13 01:15:16 UTC
(
hide
)
Description:
Bug 13545 - Add barcode image generator service
Filename:
MIME Type:
Creator:
Brandon
Created:
2015-01-13 01:15:16 UTC
Size:
2.43 KB
patch
obsolete
>From 7b86c0ad698a48584d48c561b62efeb35cdfca2c Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Thu, 4 Dec 2014 07:48:35 -0500 >Subject: [PATCH] Bug 13545 - Add barcode image generator service > >If we add a script to Koha that can be passed a barcode, we will be able >to easily embed item and patron barcodes into html printable slips and >notices. This can be very helpful for librarians, as it means scanning >an image instead of typing in the barcode manually. > >This patch adds a barcode image generator that can be passed a barcode >and an optional type ( defaults to Code39, all GD::Barcode types should >work ). This image can be embedded in html slips and notices. >( e.g. <img src="/cgi-bin/koha/svc/barcode?barcode=<<items.barcode>>"></img> ) > >Test Plan: >1) Apply this patch >2) Browse to /cgi-bin/koha/svc/barcode?barcode=123456789 on your server >3) Note the barcode image > >Signed-off-by: Brandon <brandon_h27@hotmail.com> >--- > svc/barcode | 41 +++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 41 insertions(+) > create mode 100755 svc/barcode > >diff --git a/svc/barcode b/svc/barcode >new file mode 100755 >index 0000000..8c4e745 >--- /dev/null >+++ b/svc/barcode >@@ -0,0 +1,41 @@ >+#!/usr/bin/perl >+ >+# Copyright 2014 ByWater Solutions >+# >+# This file is part of Koha. >+# >+# Koha is free software; you can redistribute it and/or modify it under the >+# terms of the GNU General Public License as published by the Free Software >+# Foundation; either version 3 of the License, or (at your option) any later >+# version. >+# >+# Koha is distributed in the hope that it will be useful, but WITHOUT ANY >+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR >+# A PARTICULAR PURPOSE. See the GNU General Public License for more details. >+# >+# You should have received a copy of the GNU General Public License along >+# with Koha; if not, write to the Free Software Foundation, Inc., >+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. >+ >+use Modern::Perl; >+ >+use CGI qw(header); >+use GD::Barcode; >+ >+use C4::Auth qw(check_cookie_auth); >+ >+my $input = new CGI; >+ >+my ( $auth_status, $sessionID ) = check_cookie_auth( $input->cookie('CGISESSID'), { catalogue => '*' } ); >+ >+if ( $auth_status ne "ok" ) { >+ exit 0; >+} >+ >+binmode(STDOUT); >+ >+my $type = $input->param('type') || 'Code39'; >+my $barcode = $input->param('barcode'); >+ >+print header('image/png'); >+print GD::Barcode->new( $type, $barcode )->plot()->png(); >-- >1.7.10.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 13545
:
35094
|
35095
|
35103
|
35128
|
35325
|
35806
|
35912
|
35913
|
35914
|
35915