在asp.net Web服务器上安装字体

时间:2014-04-18 16:37:58

标签: c# asp.net fonts

我在我的asp.net网站上使用此代码。它的条码生成代码..这个代码依赖的问题(IDAutomationHC39M)这个字体。所以在localhost我已经在我的fonts文件夹中安装了这个字体,代码在本地成功运行。但我不知道如何在服务器上安装它

   string barCode =  Request.QueryString["id"].ToString();
    System.Web.UI.WebControls.Image imgBarCode = new System.Web.UI.WebControls.Image();
    using (Bitmap bitMap = new Bitmap(barCode.Length * 40, 80))
    {
        using (Graphics graphics = Graphics.FromImage(bitMap))
        {
            Font oFont = new Font("IDAutomationHC39M", 16);

            PointF point = new PointF(2f, 2f);
            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);
        }
        plBarCode.Controls.Add(imgBarCode);
    }

2 个答案:

答案 0 :(得分:1)

如果您正在开发相对较新的浏览器,可以阅读@font-face

或者,在Web服务器上安装字体可能只是一件简单的事情,通常只需要将字体文件复制到服务器上的某个文件夹,比如桌面,这应该只是一件简单的事情。右键单击并选择"安装字体"

答案 1 :(得分:1)

假设基于Web的字体不起作用(即您需要渲染条形码服务器端并可能将其与其他图形/图像嵌入),您可以采用以下方法。我没有编写这段代码,但已经使用过它,它确实有效。

您需要从资源或可能通过URL加载字体。然后将这些位传递给以下内容。如果从资源加载,请谷歌,因为有相当多的例子。

您也可以使用fontCollection.AddFontFile()并简化代码,但这需要访问本地(服务器上)文件系统。

public FontFamily GetFontFamily(byte[] bytes)
{
    FontFamily fontFamily = null;

    var handle = GCHandle.Alloc(bytes, GCHandleType.Pinned);

    try
    {
        var ptr = Marshal.UnsafeAddrOfPinnedArrayElement(bytes, 0);
        var fontCollection = new PrivateFontCollection();
        fontCollection.AddMemoryFont(ptr, bytes.Length);
        fontFamily = fontCollection.Families[0];
    }
    finally
    {
        // don't forget to unpin the array!
        handle.Free();
    }

    return fontFamily;
}