C# Ghostscript 包装器
有没有人遇到过 C# 中 GhostScript 的一个很好的包装器。 我的具体用途是把postscript转成pdf
Has anyone encountered a nice wrapper for GhostScript in C#.
My specific use is to take postscript and turn it into a pdf
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Matthew Ephraim 创建了一个非常简单的名为 GhostScriptSharp 的 C# 包装器,它使用 P/Invoke 访问 C# 应用程序中的非托管 Ghostscript DLL:
http://mattephraim.com/blog/2009/01/06/a-simple-c-wrapper-for-ghostscript/
Matthew Ephraim has created a pretty simple C# wrapper called GhostScriptSharp that uses P/Invoke to access the unmanaged Ghostscript DLL in your C# application:
http://mattephraim.com/blog/2009/01/06/a-simple-c-wrapper-for-ghostscript/
开源 PDFSharp 有一个使用 GhostScript 的命名空间。即使您不能直接使用它,您也可以从源代码中移植您需要的任何内容。
Open-source PDFSharp has a namespace for using GhostScript. Even if you can't directly use it, you can probably graft whatever you need out of the source.
为了完整起见,还有 Gouda Ghostscript 包装器。您还可以通过 imagemagick/graphicsmagick (它们委托给 GS)间接执行一些 Ghostscript 操作,因此使用 .NET 库,例如 GraphicsMagick。 NET 对您来说可能是一个不错的方法。
编辑:
我也偶然发现了 Ghostscript.NET 。它声称是
以及其他功能的解释器,允许您运行多个 Ghostscript 实例在单个进程中同时进行。
For completeness, there's also Gouda Ghostscript wrapper. You can also perform some ghostscript operations indirectly through imagemagick/graphicsmagick (they delegate to GS), so using a .NET library like GraphicsMagick.NET might be a good approach for you.
EDIT:
I just stumbled upon Ghostscript.NET as well. It claims to be
and among other features, allows you to run multiple Ghostscript instances simultaneously within a single process.