InstalledFontCollection MyFont=new InstalledFontCollection();
FontFamily[] MyFontFamilies=MyFontFamilies;
ArrayList list = new ArrayList();
int Count=MyFontFamiliesLength;
for(int i=0;i <Count;i++)
{
string FontName=MyFontFamilies[i]Name;
listadd(FontName);
}
//List就是你要的东西
//FontFacesMenujsvarfontsArray=newArray;varfontsIsAdded=false;functionfontFacesMenuEnter}}functiongetSystemFontsreturnfArray;}3在网页需要插入字体下拉菜单的位置处插入以下代码:系统字体:<SELECTID="blessingWords_FontFamily_DL"name="blessingWords_FontFamily_DL"onChange="//SetFontFace;thisselectedIndex=0;"onmouseenter="fontFacesMenuEnter;//updateFontList;"<OPTIONVALUE=""<-设置字体-</OPTION</SELECTOK!看到效果了没有?如果可以,恭喜你了!注:如果需要加上选中后的事件,在onChange中改变成你自己的相应事件处理即可。以上对客户端的开发有用,如果需要的字体,继续往下看,否则略过即可。(1)如果你的服务器的字体与你现有电脑字体配置一样的话,使用Javascript脚本,然后COPY至写字板或记事本,再保存。接着上面步骤继续往下做:(续)步骤一:将以下代码放在<Body区内:<textareaname="FontList"id="FontList"cols="35"rows="20"id="FontList"</textarea步骤二:<Script//"blessingWords_FontFamily_DL"需要改成你自己获取系统字体下拉菜单的名字(如果你已经改过的话)vardropDownListName="blessingWords_FontFamily_DL";functionupdateFontListdocumentallvalue=list;}</Script步骤三:将上面第3条中最后的"//updateFontList;"中的两个斜杠隐掉,变成:onmouseenter="fontFacesMenuEnter;updateFontList;"步骤四:保存你的网页,刷新它,再试试看。在“FontList”的TextArea区域应该已经有了你的所有系统字体了,先复制再贴粘到你需要的地方。比如:第3条中<OPTIONVALUE=""<-设置字体-</OPTION的下面,这样,你就可以将它变成服务器上的相关字体(如果你的服务器的字体配置与你现有电脑字体配置一样的话)了。使用C#代码获取服务器系统中的字体(暂时略过,有空再写)。
通过GetStockObject函数可以取得系统字体。
The GetStockObject function retrieves a handle to one of the stock pens, brushes, fonts, or palettes
HGDIOBJ GetStockObject(
int fnObject // stock object type
);
其中fnObject可以是以下字体:
ANSI_FIXED_FONT Windows fixed-pitch (monospace) system font
ANSI_VAR_FONT Windows variable-pitch (proportional space) system font
DEVICE_DEFAULT_FONT Windows NT/2000/XP: Device-dependent font
DEFAULT_GUI_FONT Default font for user interface objects such as menus and dialog boxes This is MS Sans Serif Compare this with SYSTEM_FONT
OEM_FIXED_FONT Original equipment manufacturer (OEM) dependent fixed-pitch (monospace) font
SYSTEM_FONT System font By default, the system uses the system font to draw menus, dialog box controls, and text
Windows 95/98 and Windows NT: The system font is MS Sans Serif
Windows 2000/XP: The system font is Tahoma
SYSTEM_FIXED_FONT Fixed-pitch (monospace) system font This stock object is provided only for compatibility with 16-bit Windows versions earlier than 30
以上就是关于c# 如何获取系统中已有的所有字体全部的内容,包括:c# 如何获取系统中已有的所有字体、如何获取客户端系统已安装的所有字体、VC怎么能获取系统字体等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)