Free Barcode API for .NET [closed]

此生再无相见时 提交于 2019-12-17 10:11:55

问题


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


回答1:


Could the Barcode Rendering Framework at Codeplex GitHub be of help?




回答2:


I do recommend BarcodeLibrary

Here is a small piece of code of 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");



回答3:


There is a "3 of 9" control on CodeProject: Barcode .NET Control



来源:https://stackoverflow.com/questions/2043341/free-barcode-api-for-net

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!