Sponsored Content
Full Discussion: loading barcodes
The Lounge What is on Your Mind? loading barcodes Post 302598176 by Corona688 on Monday 13th of February 2012 04:29:28 PM
Old 02-13-2012
A barcode reader? They generally act like keyboards, not requiring the use of special drivers. Scanning in a code will usually type in that code then hit ENTER. Sometimes TAB. Some readers let you configure that.
This User Gave Thanks to Corona688 For This Post:
 

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. UNIX for Dummies Questions & Answers

Loading up Solaris OS

can someone point me to a good site that shows how to do this? i'm talking about loading solaris version 8 or 9. and i mean loadin it in real time, not on my personal pc. this is in regards to disaster recovery. any help is appreciated. (1 Reply)
Discussion started by: TRUEST
1 Replies

3. Programming

CPU Loading

How can I measure CPU loading (like performance monitor in Windows OS). I use Solaris but I would like to write portable code. Besides, I have to write programm to load CPU with known percent. How can I use CPU in 30% for example. Thanks for any ideas. (6 Replies)
Discussion started by: serge
6 Replies

4. UNIX for Dummies Questions & Answers

TCP/IP Not Entirely Loading

When our SCO UNIXWARE 7.4 System starts up we receive the following log indicating that its not loading successfully. I have pasted the txt file for review. Can someone please help? UX:S69inet: INFO: The following commands ran from /etc/init.d/inetinits This command will link the TCP/IP... (0 Replies)
Discussion started by: Yorgy
0 Replies

5. Shell Programming and Scripting

Function loading in a shell scripting like class loading in java

Like class loader in java, can we make a function loader in shell script, for this can someone throw some light on how internally bash runs a shell script , what happenes in runtime ... thanks in advance.. (1 Reply)
Discussion started by: mpsc_sela
1 Replies

6. AIX

loading subsets

In aix 5.2, we are trying to update with the latest subsets for "bos.adt.debug package". the subset version we have is 33 and the latest available is 95. Would like to know whether i need to load all the versions from 34 to 95 or can i load the latest version directly? (1 Reply)
Discussion started by: mjdarm
1 Replies

7. Debian

GNU Barcodes

I wish to be able to print a barcode .5 inches from top of the page and centered. I generate the barcode - yes 12345 | head -84 | barcode -p 5x5.0cm -umm -e CODE39 > test.ps; and print - lpr -o media=letter -#1 -P LJ1012 /var/www/test.ps -o page-top=33 -o page-bottom=44 -o... (1 Reply)
Discussion started by: Meow613
1 Replies

8. UNIX for Dummies Questions & Answers

When loading Linux "loading please wait.." then nothing?

Hi everyone, I have a problem but I have never installed a separate OS before so my lingo and understanding may not be as good as some of you. I will try and explain my problem best I can. I am trying to instead of loading Windows 7 when my computer starts up, for it to start linux specifically... (2 Replies)
Discussion started by: markhow30
2 Replies
BARCODE(3)							    GNU barcode 							BARCODE(3)

NAME
barcode - a library to create and print bar codes SYNOPSIS
#include <barcode.h> struct Barcode_Item *Barcode_Create(char *text); int Barcode_Delete(struct Barcode_Item *bc); int Barcode_Encode(struct Barcode_Item *bc, int flags); int Barcode_Print(struct Barcode_Item *bc, FILE *f, int flags); int Barcode_Position(struct Barcode_Item *bc, int wid, int hei, int xoff, int yoff , double scalef); int Barcode_Encode_and_Print(char *text, FILE *f, int wid, int hei, int xoff, int yoff, int flags); int Barcode_Version(char *versionname); DESCRIPTION
The barcode family of library functions is meant to ease creation of bar-code printouts. The information below is extracted from the tex- info file, which is the preferred source of information. The functions included in the barcode library are declared in the header file barcode.h. They perform the following tasks: struct Barcode_Item *Barcode_Create(char *text); The function creates a new barcode object to deal with a specified text string. It returns NULL in case of failure and a pointer to a barcode data structure in case of success. int Barcode_Delete(struct Barcode_Item *bc); Destroy a barcode object. Always returns 0 (success) int Barcode_Encode(struct Barcode_Item *bc, int flags); Encode the text included in the bc object. Valid flags are the encoding type (other flags are ignored) and BARCODE_NO_CHECKSUM (other flags are silently ignored); if the flag argument is zero, bc->flags will apply. The function returns 0 on success and -1 in case of error. After successful termination the data structure will host the description of the bar code and its textual representa- tion, after a failure the error field will include the reason of the failure. int Barcode_Print(struct Barcode_Item *bc, FILE *f, int flags); Print the bar code described by bc to the specified file. Valid flags are the output type, BARCODE_NO_ASCII and BARCODE_OUT_NOHEAD- ERS, other flags are ignored. If any of these flags is zero, it will be inherited from bc->flags which therefore takes precedence. The function returns 0 on success and -1 in case of error (with bc->error set accordingly). In case of success, the bar code is printed to the specified file, which won't be closed after use. int Barcode_Position(struct Barcode_Item *bc, int wid, int hei, int xoff, int yoff, double scalef); The function is a shortcut to assign values to the data structure. int Barcode_Encode_and_Print(char *text, FILE *f, int wid, int hei, int xoff, int yoff, int flags); The function deals with the whole life of the barcode object by calling the other functions; it uses all the specified flags. int Barcode_Version(char *versionname); Returns the current version as an integer number of the form major * 10000 + minor * 100 + release. Therefore, version 1.03.5 will be returned as 10305 and version 0.53 as 5300. If the argument is non-null, it will be used to return the version number as a string. Note that the same information is available from two preprocessor macros: BARCODE_VERSION (the string) and BARCODE_VER- SION_INT (the integer number). 4th Berkeley Distribution October 1999 BARCODE(3)
All times are GMT -4. The time now is 11:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy