Something wrong with my barcode (Code 128)

后端 未结 3 1365
野性不改
野性不改 2021-02-16 00:14

It was easy to generate a 3 of 9 barcode using Font()

Font f = new Font(\"Free 3 of 9\", 80);
this.Font = f;

Label l = new Label();
l.Text = \"*STA         


        
3条回答
  •  自闭症患者
    2021-02-16 01:06

    Are you creating the correct checksum character?

    Have a look at this page to see how to calculate the checksum

    For an alternative have a look at the following link - this allows you to create barcode bitmaps:

    http://www.codeproject.com/KB/graphics/BarcodeLibrary.aspx?fid=470627&fr=26#xx0xx

提交回复
热议问题