Re: Printing Barcodes from webapp?

2006-12-06 Thread Robin Becker
Dennis Lee Bieber wrote: On Tue, 05 Dec 2006 18:19:58 GMT, Dennis Lee Bieber [EMAIL PROTECTED] declaimed the following in comp.lang.python: Aye, just the Postnet scheme... The difficult part was working out the spacing for the dot-matrix printer; the rest was just using the Zipcode

Re: Printing Barcodes from webapp?

2006-12-05 Thread John J. Lee
Dennis Lee Bieber [EMAIL PROTECTED] writes: On 04 Dec 2006 12:41:59 +, [EMAIL PROTECTED] (John J. Lee) declaimed the following in comp.lang.python: digits, through complicated encodings (my colleague Robin tells me US postal bar codes were a particular pain), up to funny-looking 2D

Re: Printing Barcodes from webapp?

2006-12-04 Thread John J. Lee
Andy Dingley [EMAIL PROTECTED] writes: Burhan wrote: Is there an easy way to generate barcodes using Python Easy way for any application or language to generate barcodes is to install a barcode font on the client machine, then just generate a suitable text string for it. This is

Re: Printing Barcodes from webapp?

2006-12-02 Thread Leo Kislov
Burhan wrote: Hello Group: I am in the planning stages of an application that will be accessed over the web, and one of the ideas is to print a barcode that is generated when the user creates a record. The application is to track paperwork/items and uses barcodes to easily identify which

Re: Printing Barcodes from webapp?

2006-12-02 Thread Fredrik Lundh
Burhan wrote: Is there an easy way to generate barcodes using Python -- considering the application will be printing to a printer at the client's machine? here are some barcode generators for Python: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/426069

Re: Printing Barcodes from webapp?

2006-12-02 Thread Andy Dingley
Burhan wrote: Is there an easy way to generate barcodes using Python Easy way for any application or language to generate barcodes is to install a barcode font on the client machine, then just generate a suitable text string for it. This is _very_ easy, if you can get the font deployed. I

Re: Printing Barcodes from webapp?

2006-12-02 Thread Burhan
Andy Dingley wrote: Burhan wrote: Is there an easy way to generate barcodes using Python Easy way for any application or language to generate barcodes is to install a barcode font on the client machine, then just generate a suitable text string for it. This is _very_ easy, if you can

Printing Barcodes from webapp?

2006-12-01 Thread Burhan
Hello Group: I am in the planning stages of an application that will be accessed over the web, and one of the ideas is to print a barcode that is generated when the user creates a record. The application is to track paperwork/items and uses barcodes to easily identify which paper/item belongs