项目中使用了System.Drawing相关的font,本地正常,远程显示方块,可以把本地字体文件复制到远程。关键代码:
System.Drawing.Text.PrivateFontCollection privateFonts = new System.Drawing.Text.PrivateFontCollection(); //添加字体文件,可以添加多个 //web中,路径映射方式参考:System.Web.HttpContext.Current.Server.MapPath("/font/SourceHanSansCN-Medium.otf") privateFonts.AddFontFile("d:\\font\\SourceHanSansCN-Medium.otf"); System.Drawing.Font font = new Font(privateFonts.Families[0], 12);
标签:远程,C#,privateFonts,System,字体,服务器,font,Drawing From: https://www.cnblogs.com/superfeeling/p/17007355.html