如何在asp.net中打印条形码?

时间:2014-06-11 08:47:20

标签: c# asp.net printing barcode-printing

我有一个asp.net网站,我想在c#中打印一些条形码。我使用" IDAutomationHC39M"字体如下:

public static void PrintSmallBarcode(HtmlGenericControl divBarCode, string barCode)
    {
        System.Web.UI.WebControls.Image imgBarCode = new System.Web.UI.WebControls.Image();
        using (Bitmap bitMap = new Bitmap(75, 18))
        {
            using (Graphics graphics = Graphics.FromImage(bitMap))
            {
                Font oFont = new Font("IDAutomationHC39M", 7);
                PointF point = new PointF(0, 0);
                SolidBrush blackBrush = new SolidBrush(Color.Black);
                SolidBrush whiteBrush = new SolidBrush(Color.White);
                graphics.FillRectangle(whiteBrush, 0, 0, bitMap.Width, bitMap.Height);
                graphics.DrawString(barCode, oFont, blackBrush, point);
            }
            using (MemoryStream ms = new MemoryStream())
            {
                bitMap.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
                byte[] byteImage = ms.ToArray();

                Convert.ToBase64String(byteImage);
                imgBarCode.ImageUrl = "data:image/png;base64," + Convert.ToBase64String(byteImage);
                imgBarCode.CssClass = "cssbarcode";
            }
        }
        div.Controls.Add(imgBarCode);
}

它可以工作,但条形码的质量很低,我的条形码阅读器设备无法读取它。我不能增加图像的大小,当然我看到很多比我的尺寸小的好条形码。我取代" IDAutomationHC39M"字体用" free3of9.ttf",但这个字体只是绘制数字而没有条形码行! 我怎样才能获得更好的条形码?

2 个答案:

答案 0 :(得分:0)

这是条形码字体长期存在的问题;它们是巨大的,扫描可怕,因为打印机试图对条形图进行反锯齿。

使用图片而非字体来绘制条形码。有许多可用的包,例如Barcode Rendering Framework

答案 1 :(得分:0)

您可以使用其他数据来更改条形码的大小。我使用了keepautomation barcode generator for asp.net在Visual C#ASP.NET项目中创建条形码图像。在我的设置之后,我可以预览条形码的大小。< / p>