C# Ghostscript 包装器

发布于 2024-08-03 14:42:37 字数 66 浏览 4 评论 0原文

有没有人遇到过 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 技术交流群。

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

发布评论

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

评论(3

也只是曾经 2024-08-10 14:42:37

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/

予囚 2024-08-10 14:42:37

开源 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.

人事已非 2024-08-10 14:42:37

为了完整起见,还有 Gouda Ghostscript 包装器。您还可以通过 imagemagick/graphicsmagick (它们委托给 GS)间接执行一些 Ghostscript 操作,因此使用 .NET 库,例如 GraphicsMagick。 NET 对您来说可能是一个不错的方法。

编辑:

我也偶然发现了 Ghostscript.NET 。它声称是

...围绕本机 Ghostscript 库(32 位和 64 位)最完整的托管包装库,PostScript 语言、PDF、相关软件和文档的解释器

以及其他功能的解释器,允许您运行多个 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

...the most completed managed wrapper library around the native Ghostscript library (32-bit & 64-bit), an interpreter for the PostScript language, PDF, related software and documentation

and among other features, allows you to run multiple Ghostscript instances simultaneously within a single process.

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