0

在 C#(使用 Visual Studio 2013)中绘制 EAN-13 条码进行打印的最基本方法是什么?

我更愿意包含一个命名空间,为我提供创建和输出条形码的工具。

4

1 回答 1

2

恕我直言,最容易使用的库是Aspose BarCode.NET你可以在这里找到例子

图书馆确实要花钱,但运作良好,对我们来说,这是值得的。

// Create an instance of BarCodeBuilder
BarCodeBuilder builder = new BarCodeBuilder();

// Set the symbology type
builder.SymbologyType = Symbology.EAN13;

// Set the codetext
builder.CodeText = "test-123";

// Get the barcode image
Image img = builder.BarCodeImage;

现在你可以对图像做任何你想做的事情,比如把它保存到一个文件中,或者写入一个内存流等等:

img.Save("path", System.Drawing.Imaging.ImageFormat.Bmp);
于 2014-09-17T14:22:44.540 回答