I want to create Code39 encoded barcodes from my application.
I know I can use a font for this, but I\'d prefer not to as I\'d have to register the font on the serv
The iTextSharp library, while ostensibly for creating creating PDFs, also has a barcode generation library that includes Code39.
Once you add a reference to the DLL, it's as simple as:
Barcode39 code39 = new Barcode39();
code39.Code = "Whatever You're Encoding";
Oops, that's C#, but you get the idea. Once created, you can render an image in just about any image format and use it as you wish.