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

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

用户操作
[即时聊天] [发私信] [加为好友]
大可山(Johnson)ID:johnsuna
424129次访问,排名113好友60人,关注者103
深圳报业集团问工网,技术总监
johnsuna的文章
原创 258 篇
翻译 1 篇
转载 44 篇
评论 466 篇
大可山(Johnson)的公告

MSN:a3news(at)hotmail.com,从2007年8月8日起笔名改为:大可山(以前叫阿山Net)
Q:329325120
[这段时间忙,尽量少问我问题。见谅!]
引用本人原作,请注明出处。
最近评论
zhtqt:给我发一份,可以吗? 谢谢您了!
zhtqt@qq.com
somboy:额滴神啊~~~给我一份吧。。
示例和下载都不能用了。
ayhncn#163.com
谢谢哦~~~
somboy:额滴神啊~~~给我一份吧。。
示例和下载都不能用了。
ayhncn#163.com
谢谢哦~~~
devas:呵呵,向博主请教一下,在grid中定义了 <Grid.RowDefinitions>
<Grid.ColumnDefinitions>
后, 内部的 Border 就没有效果了.
请问要如何在显式定义 row和column 的情况下,改变grid的形状呢?
mkyj3d:老大,GMAIL可以用JMAIL组件来发送邮件吗?
文章分类
收藏
相册
Chinaphotoshop.Net
报业大厦外摄
程序截图
美丽的深圳
世界之窗
软件开发
你的灯亮着吗?(RSS)
图书出版
大溪水的博客(RSS)
图形图像
C#新型报表工具 XDesigner(RSS)
存档
软件项目交易
订阅我的博客
XML聚合  FeedSky
订阅到鲜果
订阅到Google
订阅到抓虾
订阅到BlogLines
订阅到Yahoo
订阅到GouGou
订阅到飞鸽
订阅到Rojo
订阅到newsgator
订阅到netvibes

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

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

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

评论

#a119797 发表于2008-04-14 15:34:45  IP: 219.134.84.*
呵呵。可以把asp.net可以使用的用来获取系统的方法都列出来吗?
发表评论  


当前用户设置只有注册用户才能发表评论。如果你没有登录,请点击登录
Csdn Blog version 3.1a
Copyright © 大可山(Johnson)