Free barcode API for .NET.

Is there a free free API / component for printing barcodes in C #?

+58
c # api components barcode
Jan 11
source share
3 answers

Could Framework help for rendering barcode in Codeplex GitHub?

+58
Jan 11 '10 at 17:00
source share

I recommend BarcodeLibrary

Here is a small piece of code on how to use it.

BarcodeLib.Barcode barcode = new BarcodeLib.Barcode() { IncludeLabel = true, Alignment = AlignmentPositions.CENTER, Width = 300, Height = 100, RotateFlipType = RotateFlipType.RotateNoneFlipNone, BackColor = Color.White, ForeColor = Color.Black, }; Image img = barcode.Encode(TYPE.CODE128B, "123456789"); 
+52
Apr 05 2018-11-11T00:
source share

CodeProject has the "3 of 9" control : Barcode.NET Control

+12
Jan 11 '10 at 16:57
source share



All Articles