大可山博客[GDI+,WPF, .Net图形图像]

WPF,WinForms,asp.net开发,图形图像处理系统研究 (Johnson Blog)      [信奉:凡事靠自己] MSN:a3news(at)hotmail.com QQ:329325120

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

很久以前,我曾写过一篇“网页中如何获取客户端系统已安装的所有字体?”(链接在这: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;
            }
        }
    }
}


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

发表于 @ 2008年04月14日 14:47:00|评论(loading...)

新一篇: 支持奥运,让世界听到我们的声音! | 旧一篇: 用C#对Illustrator矢量图形软件进行编程之2

用户操作
[即时聊天] [发私信] [加为好友]
大可山(Johnson)
订阅我的博客
XML聚合  FeedSky
订阅到鲜果
订阅到Google
订阅到抓虾
大可山(Johnson)的公告
MSN:a3news(at)hotmail.com,从2007年8月8日起笔名改为:大可山(以前叫阿山Net)
Q:329325120
引用本人原作,请注明出处。
文章分类
收藏
软件开发
你的灯亮着吗?(RSS)
图书出版
大溪水的博客(RSS)
图形图像
C#新型报表工具 XDesigner(RSS)
存档
软件项目交易
Csdn Blog version 3.1a
Copyright © 大可山(Johnson)