服务器上字体如何显示,虚拟主机中,如何知道服务器上已安装的所有字体的列表?...

很久以前,我曾写过一篇“网页中如何获取客户端系统已安装的所有字体?”(链接在这:http://blog.csdn.net/johnsuna/archive/2006/05/25/755639.aspx)之后,有一些朋友问我:在使用虚拟主机的情况下,如何获取服务器上已安装字体的列表?

实际上,非常简单!在支持asp.net的服务器上,你可以使用下面的代码来获取虚拟主机上已安装的所有字体列表。

关键代码:InstalledFontCollection ifc = new InstalledFontCollection();

// GetServerFontFamilies.aspx

通过asp.net获取服务器上所有字体列表(C#代码)

字体列表:

// GetServerFontFamilies.aspx.cs

using System;

using System.Data;

using System.Drawing;

using System.Drawing.Imaging;

using System.Drawing.Text;

using System.Configuration;

using System.Collections;

using System.Text;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;

using System.Web.UI.HtmlControls;

namespace BrawDraw.Com.Utilities.Font

{

public partial class Utility_GetServerFontFamilies : System.Web.UI.Page

{

protected void Page_Load(object sender, EventArgs e)

{

if (!Page.IsPostBack)

{

InstalledFontCollection ifc = new InstalledFontCollection();

FontFamily[] ffList = ifc.Families;

StringBuilder sb = new StringBuilder();

foreach (FontFamily ff in ffList)

{

sb.Append(ff.Name + "/r/n");

}

txtBoxFontList.Text = sb.ToString();

sb = null;

}

}

}

}

运行界面:576168f2b916b15ad2f8320dd935ebfa.png

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值