我可以在自己的 C# 项目中调用 FontForge 的某些函数吗?
我已经在Windows7操作系统中成功安装了Cygwin和FontForge,它们看起来运行得很好。我发现FontForge是一个强大的工具~~但是我有一个很天真的问题...我可以在自己的C#中调用FontForge的一些函数吗?项目? 我是第一次使用开源项目,不知道如何将开源代码和自己的代码结合起来~
I have installed Cygwin and FontForge successfully in the Windows7 operating system and they seem work very well.I find that FontForge is a powerful tool~~However I have a very naive question...Can I call some function of FontForge in my own C# project?
It's the first time for me to use the open source project, and I don't know how to combine the open source codes with my own codes~
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我目前正在构建一个使用 fontforge 的项目,我从 C# 调用它作为启动 bash.exe 并运行 fontforge 作为命令行参数的进程。
下面是一个示例:
cygwinWorkpath 类似于 /myworkfolder,windowsWorkPath 类似于 c:\cygwin\myworkfolder。
I've currently building a project that uses fontforge and I call it from C# as a Process that starts bash.exe and running fontforge as a command line arguments.
Here's an example:
cygwinWorkpath is something like /myworkfolder and windowsWorkPath is like c:\cygwin\myworkfolder.