Sponsored Content
Full Discussion: GNU Barcodes
Operating Systems Linux Debian GNU Barcodes Post 302930363 by DGPickett on Friday 2nd of January 2015 03:49:21 PM
Old 01-02-2015
Just reading the man page, but I looks like you asked for 84 copies. The -u seems to fight with the -p, so if you say you want mm units, why not just say say 50x50? Great to know this exists, but I am no longer in a barcode shop.
 

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

how to print barcodes?

Hello All, I need to print barcodes on reports being generated/printed on a Unix server. I think I can do this using a combination of PCL and TrueType fonts, but I'm not exactly sure how. Can anyone point me in the right direction? Any help would be appreciated... (3 Replies)
Discussion started by: gdrumb
3 Replies

2. Programming

Gnu C

hello, i have use only TURBO C for programming.i used to did only on windows OS. but now i am trying to program on Linux systems.so i heard about GNU C tools and compiler. i am a bit confused and i want to know a very simplified answer for it. can anybody help me. what a heck is this GNU...... ... (1 Reply)
Discussion started by: vibhory2j
1 Replies

3. UNIX for Dummies Questions & Answers

GNU Date

I know there are some posts on getting the time with milliseconds included and I realize unix may not be the best on this. I have seem some posts where its advised to install the GNU date. Any one know where I can download this as I am struggling to find it. Alternatively - if you have... (5 Replies)
Discussion started by: frustrated1
5 Replies

4. UNIX for Advanced & Expert Users

GNU screen

Hello, One of the things I like about screen is that it has a scrollback buffer, which if you go into the copy mode, will let you go back for a specified number of line. Is there a way to extend the number of scrollback lines in screen? I've looked thoroughly online and I could not find a... (2 Replies)
Discussion started by: neked
2 Replies

5. UNIX for Advanced & Expert Users

non GNU utilities

Hi Chaps, Does anyone know of a source of proprietary unix utilities. I often fall into the trap of testing a spot of code on my linux machine, posting the answer in the forums and then realise that the solution may only work with the GNU utils that I use, and not standard posix ones (if there are... (4 Replies)
Discussion started by: wempy
4 Replies

6. What is on Your Mind?

loading barcodes

Does anyone know how I can upload a barcode into UNIX? I want to scan the product and load it into the UNIX system. (4 Replies)
Discussion started by: Albright Weldin
4 Replies

7. Shell Programming and Scripting

Using GNU Regex

I'm just learning Regex and while testing my understanding I received some unexpected results. I created example.txt with the text "abcddd". Running the command grep --color 'd' example.txt I received the results: "abcddd" with the first and second letter d highlighted in red. So... (1 Reply)
Discussion started by: rthomas529
1 Replies

8. UNIX for Advanced & Expert Users

GNU = inventions that nobody wants?

Stumbled over this today on GNU/Linux, output from ps -fp : UID PID PPID C STIME TTY TIME CMD root 3516 1 0 2017 ? 00:00:13 syslogd -m 0 UID PID PPID C STIME TTY TIME CMD syslog 2952 1 0 2017 ? 00:02:08 rsyslogdSTIME showing... (8 Replies)
Discussion started by: MadeInGermany
8 Replies
Barcode::COOP2of5(3pm)					User Contributed Perl Documentation				    Barcode::COOP2of5(3pm)

NAME
GD::Barcode::COOP2of5 - Create COOP2of5 barcode image with GD SYNOPSIS
ex. CGI use GD::Barcode::COOP2of5; binmode(STDOUT); print "Content-Type: image/png "; print GD::Barcode::COOP2of5->new('1234567890')->plot->png; with Error Check my $oGdBar = GD::Barcode::COOP2of5->new('A12345678'); die $GD::Barcode::COOP2of5::errStr unless($oGdBar); #Invalid Characters $oGdBar->plot->png; DESCRIPTION
GD::Barcode::COOP2of5 is a subclass of GD::Barcode and allows you to create COOP2of5 barcode image with GD. new $oGdBar = GD::Barcode::COOP2of5->new($sTxt); Constructor. Creates a GD::Barcode::COOP2of5 object for $sTxt. $sTxt has numeric characters([0-9]). plot() $oGd = $oGdBar->plot([Height => $iHeight, NoText => 0 | 1]); creates GD object with barcode image for the $sTxt specified at new method. $iHeight is height of the image. If NoText is 1, the image has no text image of $sTxt. ex. my $oGdB = GD::Barcode::COOP2of5->new('12345678'); my $oGD = $oGdB->plot(NoText=>1, Height => 20); # $sGD is a GD image with Height=>20 pixels, with no text. barcode() $sPtn = $oGdBar->barcode(); returns a barcode pattern in string with '1' and '0'. '1' means black, '0' means white. ex. my $oGdB = GD::Barcode::COOP2of5->new('12345678'); my $sPtn = $oGdB->barcode(); $errStr $GD::Barcode::COOP2of5::errStr has error message. $text $oGdBar->{$text} has barcode text based on $sTxt specified in new method. AUTHOR
Kawai Takanori GCD00051@nifty.ne.jp COPYRIGHT
The GD::Barocde::COOP2of5 module is Copyright (c) 2000 Kawai Takanori. Japan. All rights reserved. You may distribute under the terms of either the GNU General Public License or the Artistic License, as specified in the Perl README file. SEE ALSO
GD::Barcode perl v5.12.3 2003-05-29 Barcode::COOP2of5(3pm)
All times are GMT -4. The time now is 12:02 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy