C# - 如何使用自定义字体而不将其安装在系统中

发布于 2024-10-06 21:53:22 字数 156 浏览 2 评论 0原文

我再次需要你的帮助。

我正在 C# 上开发一个使用自定义字体的小型应用程序。 问题是,字体必须预先安装在系统上。如果系统中不存在该字体,则仅使用 Times New Roman。 有没有什么方法可以将字体文件嵌入到应用程序中,这样就不需要在每个系统中安装它?

谢谢。

Once again I need your help.

I'm developing a small application on C# that uses a custom Font.
The problem is, the font must be installed previously on the system. If the font is not present in the system it just uses Times New Roman.
Is there any way to embed the font file in the application so it doesn't need to be installed in every system?

Thank you.

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

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

发布评论

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

评论(2

我不是你的备胎 2024-10-13 21:53:22

如果您仍在阅读本文,我可能会指出您不必使用不安全的代码从资源加载字体。这是一个使用 Marshal 的示例。

PrivateFontCollection _fonts = new PrivateFontCollection();

byte[] fontData = Resources.CustomFontResourceName;

IntPtr fontPtr = Marshal.AllocCoTaskMem(fontData.Length);

Marshal.Copy(fontData, 0, fontPtr, fontData.Length);

_fonts.AddMemoryFont(fontPtr, fontData.Length);

Marshal.FreeCoTaskMem(fontPtr);

Font customFont = new Font(_fonts.Families[0], 6.0F);

If you're still reading this, I might point out that you don't have to use unsafe code to load the font from a resource. Here's an example using Marshal.

PrivateFontCollection _fonts = new PrivateFontCollection();

byte[] fontData = Resources.CustomFontResourceName;

IntPtr fontPtr = Marshal.AllocCoTaskMem(fontData.Length);

Marshal.Copy(fontData, 0, fontPtr, fontData.Length);

_fonts.AddMemoryFont(fontPtr, fontData.Length);

Marshal.FreeCoTaskMem(fontPtr);

Font customFont = new Font(_fonts.Families[0], 6.0F);
南城旧梦 2024-10-13 21:53:22

请注意,如果您使用 AddMemoryFont,则需要使用此 api 调用“AddFontMemResourceEx”,否则它将无法工作。

PrivateFontCollection 给我符号

Note that if you use AddMemoryFont, you will need to use this api call "AddFontMemResourceEx" or it wont work.

PrivateFontCollection giving me symbols

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