很久以前,我曾写过一篇“网页中如何获取客户端系统已安装的所有字体?”之后,有一些朋友问我:在使用虚拟主机的情况下,如何获取服务器上已安装字体的列表?
实际上,非常简单!在支持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;
}
}
}
}
运行界面:
标签:Web,sb,虚拟主机,System,字体,列表,UI,using,服务器 From: https://blog.51cto.com/JohnsonJu/6090423