On Jun 1, 12:31 am, Iceberg <[email protected]> wrote: > Thanks. Then what choices do you recommend to read barcodes? Both make > and read are needed to complete any full solution, aren't they?
That depends on your application - for PyCon, we generate and print the codes on user badges; vendors and people interviewing had their own scanners (handheld) to read the codes. I'm not sure how these send the data, but I suspect it is much like the ZXing web "scanner" which reads an image (i.e., sends the data from the code). > > On Jun1, 11:17am, Jason Brower <[email protected]> wrote: > > > There are alot of functions that can make barcodes. I think google has a > > web api for barcodes. I made one that ran a script in the background to > > make one. Search for any program that can make barcodes on your > > computer and you can use it. Python scripts are powerful enough to do > > just about anything. The first program I ever made in web2py made 2d > > barcodes. It would be cool to have a plugin that could make all kinds > > from all the libraries. > > I think reportlab is another barcode maker, that ones a bit fancy but it > > is all python. :D > > Best Regards, > > Jason Brower > > > On Mon, 2010-05-31 at 11:46 -0700, Yarko Tymciurak wrote: > > > On May 31, 12:53 pm, ceriox <[email protected]> wrote: > > > > like object... > > > > > i need to generate a label with barcode > > > > > anybody have an example? > > > > In general, you need to generate an image of some sort, based on data. > > > > To print images on badges, you could look at the mk_barcode() function > > > in > > >http://code.google.com/p/web2conf/source/browse/applications/register... > > > > Although I haven't tried this, you might also look at: > > >http://javascript-library-tips.changblog.com/2009/12/jquery-barcode.html > > > > - Yarko > > > > > thanks

