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

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

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

// GetServerFontFamilies.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="GetServerFontFamilies.aspx.cs" Inherits="BrawDraw.Com.Utilities.Font.Utility_GetServerFontFamilies" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>通过asp.net获取服务器上所有字体列表(C#代码)</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <strong>
        字体列表:</strong><br />
        <asp:TextBox ID="txtBoxFontList" runat="server" Height="420px" TextMode="MultiLine" Width="300px"></asp:TextBox></div>
    </form>
</body>
</html>

// 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;
            }
        }
    }
}


运行界面:
获取服务器上已安装的所有字体列表

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值