I'm building a custom shipping solution using ASP.NET and C# and need to generate bar-codes in EAN 128 format. I was wondering if anybody knew where to find a compatible EAN Code 128 bar-code font?
Any help would be greatly appreciated.
Just to wave my own flag, here's my own library to create barcode images, including EAN 128. http://code.google.com/p/netbarcodewriter
I'd use a library rather than a font, for two reasons:
Here's a free one that does Code128. You give it the data to encode, and it gives you an
Image
you could serve to a client.You'll have to do a little extra work to implement EAN 128 (GS1-128), but that's just a matter of what data you're sending to the Code128 generator.