如何在 C# 中创建 EPS 文件?
如何在 C# 中创建 EPS 文件? 是否有任何可用的开源库,或者我必须求助于规范 并手工完成?
How can I create EPS files in C#? Are there any opensource libraries available or do I have to resort to the spec and do it by hand?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用我在 HTML 到 Postscript 问题中建议的相同原则: html-to-postscript -conversion
设置起来很笨拙,但是一旦完成就可以很好地工作。 如果您没有创建 EPS 文件的打印机驱动程序,您可以下载一些免费软件 pdf 创建器打印机驱动程序。 我相信其中一些也允许您创建 EPS 文件。
You can use the same principle as I suggested in the HTML to Postscript question here: html-to-postscript-conversion
It is clumsy to set up, but once it is done it works quite well. If you don't have a printer driver that creates EPS files you can download some of the freeware pdf creator printer drivers. I believe some of these allow you to create EPS files as well.
cairo 库 http://www.cairgraphics.org 生成各种图形格式,svf、pdf 或 ps例如,我认为它具有 c# 的绑定。
The cairo library http://www.cairographics.org generate all kinds of graphical formats, svf, pdf or ps for instance, and it has bindings for c# I think.