C# - 如何使用自定义字体而不将其安装在系统中
我再次需要你的帮助。
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您仍在阅读本文,我可能会指出您不必使用不安全的代码从资源加载字体。这是一个使用 Marshal 的示例。
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.
请注意,如果您使用 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