码迷,mamicode.com
首页 > Web开发 > 详细

.net如何使用系统中没有安装的字体?

时间:2017-10-25 17:13:55      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:路径   regular   sys   collect   file   graph   style   poi   多个   

 

不想安装到客户端的 Fonts 目录下面,但是我又想在程序中使用它。

这段代码放在哪里?

字体文件需要放到要安装的机器上吗?并不需要

System.Drawing.Text.PrivateFontCollection pfc = new System.Drawing.Text.PrivateFontCollection();

pfc.AddFontFile(fontFile);//fontFile为你的字体文件的路径,如果有多个字体文件可以继续添加

Font myFont = new Font(pfc.Families[0], 20f, FontStyle.Regular, GraphicsUnit.Point, 0);//m

.net如何使用系统中没有安装的字体?

标签:路径   regular   sys   collect   file   graph   style   poi   多个   

原文地址:http://www.cnblogs.com/chenjfblog/p/7729871.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!