[Harbour] OFF: PDF417 barcode

2010-02-05 Thread Viktor Szakáts
Hi All, Does anyone have source code to generate PDF417 barcodes? (using .ttf file or graphical shapes if possible) Brgds, Viktor ___ Harbour mailing list (attachment size limit: 40KB) Harbour@harbour-project.org

Re: [Harbour] OFF: PDF417 barcode

2010-02-05 Thread Mindaugas Kavaliauskas
Hi, Does anyone have source code to generate PDF417 barcodes? (using .ttf file or graphical shapes if possible) http://sourceforge.net/projects/pdf417lib/ Regards, Mindaugas ___ Harbour mailing list (attachment size limit: 40KB)

Re: [Harbour] OFF: PDF417 barcode

2010-02-05 Thread Massimo Belgrano
One way for printing barcode PDF417 symbologies is use font here you can find a open source solution http://sourceforge.net/projects/openbarcodes/ PDF417, EAN13, code128, EAN128, 3 of 9 and 2 of 5 and in future datamatrix maj be usefull a little wrapper for this lib? Imo we can use with

Re: [Harbour] OFF: PDF417 barcode

2010-02-05 Thread Viktor Szakáts
Thank you. Forgot to mention but I need something in .prg code. Brgds, Viktor On 2010 Feb 5, at 12:42, Mindaugas Kavaliauskas wrote: Hi, Does anyone have source code to generate PDF417 barcodes? (using .ttf file or graphical shapes if possible)

Re: [Harbour] OFF: PDF417 barcode

2010-02-05 Thread Viktor Szakáts
Code seems to be missing for PDF417 printing in this package. Brgds, Viktor On 2010 Feb 5, at 12:48, Massimo Belgrano wrote: One way for printing barcode PDF417 symbologies is use font here you can find a open source solution http://sourceforge.net/projects/openbarcodes/ PDF417, EAN13,

Re: [Harbour] OFF: PDF417 barcode

2010-02-05 Thread Mindaugas Kavaliauskas
Hi, Viktor Szakáts wrote: Thank you. Forgot to mention but I need something in .prg code. Does anyone have source code to generate PDF417 barcodes? (using .ttf file or graphical shapes if possible) http://sourceforge.net/projects/pdf417lib/ Simple .prg wrapper could be used. I guess

Re: [Harbour] OFF: PDF417 barcode

2010-02-05 Thread Massimo Belgrano
Here is visual basic part good for you a way like oPrn := win_prn():New(GetDefaultPrinter()) oPrn:SetFont(code128,11255) // please try different value oPrn:TextOut(pdf417(ABC),.t.) oPrn:NewPage() or oPrinter := xbpPrinter():New():Create(cPrinter, PRN_Q_TEXT ) Private Function

Re: [Harbour] OFF: PDF417 barcode

2010-02-05 Thread Viktor Szakáts
Viktor Szakáts wrote: Thank you. Forgot to mention but I need something in .prg code. Does anyone have source code to generate PDF417 barcodes? (using .ttf file or graphical shapes if possible) http://sourceforge.net/projects/pdf417lib/ Simple .prg wrapper could be used. I guess source

Re: [Harbour] OFF: PDF417 barcode

2010-02-05 Thread Viktor Szakáts
My bad, thank you, I've found now this code inside the package. Converting from VB to Harbour is simple sr for the most part. Brgds, Viktor On 2010 Feb 5, at 13:07, Massimo Belgrano wrote: Here is visual basic part good for you a way like oPrn := win_prn():New(GetDefaultPrinter())

Re: [Harbour] OFF: PDF417 barcode

2010-02-05 Thread Mindaugas Kavaliauskas
Hi, This class work too in Clipper. This is Code 39, not PDF417. Regards, Mindaugas ___ Harbour mailing list (attachment size limit: 40KB) Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

Re: [Harbour] OFF: PDF417 barcode

2010-02-05 Thread smu johnson
I don't, but I have a CODE128 barcode generator I wrote from scratch in Clipper a few days ago, which switches between mode B and C efficiently, in case that helps. Probably not as your question is very specific, but maybe my thing could go in a contrib someday. On Fri, Feb 5, 2010 at 3:12 AM,

Re: [Harbour] OFF: PDF417 barcode

2010-02-05 Thread Massimo Belgrano
post your generator follow is info regarding pdf417 http://grandzebu.net/index.php?page=/informatique/codbar-en/pdf417.htm 2010/2/5 smu johnson smujohn...@gmail.com: I don't, but I have a CODE128 barcode generator I wrote from scratch in Clipper a few days ago, which switches between mode B

Re: [Harbour] OFF: PDF417 barcode

2010-02-05 Thread Viktor Szakáts
I don't, but I have a CODE128 barcode generator I wrote from scratch in Clipper a few days ago, which switches between mode B and C efficiently, in case that helps. Probably not as your question is very specific, but maybe my thing could go in a contrib someday. Thank you, I have an