获取 ITextSharp 支持的字体列表

发布于 2024-08-17 08:39:27 字数 170 浏览 5 评论 0原文

我正在与 ITextSharp 合作开展一个项目,并正在寻找一种合理的方法来获取可供使用的不同字体的字符串列表。

我想也许我可以使用反射并循环一类可用字体,但似乎没有一种简单的方法可以做到这一点。我真正想做的是提供可用/支持的字体的下拉菜单,供我的用户选择,

有人对我如何实现这一目标有任何想法吗?

I'm working with ITextSharp for a project and am looking for a reasonable way to get a string list of different fonts it has available for use.

I thought maybe I could just use reflection and loop over a class of available fonts, but there does not seem to be an easy way to do this. What I really want to do is provide a drop down of available/supported fonts for my users to select from

Does anyone have any thoughts on how I might accomplish this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

以往的大感动 2024-08-24 08:39:27

这个网页提供了有关如何使用 14 iTextSharp 中的嵌入字体,以及如何嵌入和使用您选择的任何字体。

要获取 iTextSharp 中包含的字体列表:

  Dim myCol As ICollection
  //Returns the list of all font families included in iTextSharp.
  myCol = iTextSharp.text.FontFactory.RegisteredFamilies
  //Returns the list of all fonts included in iTextSharp.
  myCol = iTextSharp.text.FontFactory.RegisteredFonts

字体系列的一个示例是 Helvetica。字体的一个示例是 Helvetica-Bold 或 Helvetica-Italic。

This webpage has a great reference for how to work with the 14 embedded fonts in iTextSharp, as well as how to embed and use any fonts of your choosing.

To get the list of fonts included in iTextSharp:

  Dim myCol As ICollection
  //Returns the list of all font families included in iTextSharp.
  myCol = iTextSharp.text.FontFactory.RegisteredFamilies
  //Returns the list of all fonts included in iTextSharp.
  myCol = iTextSharp.text.FontFactory.RegisteredFonts

An example of a font family is Helvetica. An example of a font is Helvetica-Bold or Helvetica-Italic.

魔法唧唧 2024-08-24 08:39:27

首先调用 FontFactory.RegisterDirectories();注册系统上的所有字体。

然后调用 FontFactory.RegisteredFonts;获取所有字体。

First call FontFactory.RegisterDirectories(); to get all fonts on the system registered.

Then call FontFactory.RegisteredFonts; to get all the fonts.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文