如何在Visual C#中绘制EAN-13条形码



在C#中绘制EAN-13条形码以进行打印的最基本方法是什么?

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

使用IMHO最简单的库是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);

相关内容

  • 没有找到相关文章

最新更新