Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within Java in General
Search Coderanch
Advance search
Google search
Register / Login
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Tim Cooke
Campbell Ritchie
paul wheaton
Ron McLeod
Devaka Cooray
Sheriffs:
Jeanne Boyarsky
Liutauras Vilda
Paul Clapham
Saloon Keepers:
Tim Holloway
Carey Brown
Piet Souris
Bartenders:
Forum:
Java in General
Generate barcode
johny jill
Greenhorn
Posts: 8
posted 18 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Hi,
How to generate barcode using itext-1.4.3.jar
Any sample code will be appreciated
Help me
Scott Johnson
Ranch Hand
Posts: 518
posted 18 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Google is your friend.
http://itextdocs.lowagie.com/tutorial/objects/images/tiff/index.html
Scroll down to "Barcodes".
johny jill
Greenhorn
Posts: 8
posted 18 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Thanks for reply
Its work fine
I generate barcode in pdf using following code
Document document = new Document(PageSize.A4, 50F, 50F, 50F, 50F); PdfWriter pdfwriter = PdfWriter.getInstance(document, new FileOutputStream("bars.pdf")); document.open(); com.lowagie.text.pdf.PdfContentByte pdfcontentbyte = pdfwriter.getDirectContent(); Barcode128 barcode128 = new Barcode128(); barcode128.setCode(s); com.lowagie.text.Image image = barcode128.createImageWithBarcode(pdfcontentbyte, Color.blue, Color.black);
Then i want to read this barcode through barcode reader,
How can i do this,
Help me,
Thanks in advance
With a little knowledge, a
cast iron skillet
is non-stick and lasts a lifetime.
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
generate barcode image
barcode
java barcode packages
IReport and Barcode on PDF Output
generate barcode in pdf format
More...