使用 MVC 3 打印 Migradoc 文档

发布于 2025-01-02 00:46:52 字数 223 浏览 1 评论 0原文

在我的应用程序中,我需要能够创建一个 PDF 报告,包含页眉/页脚、图片、文本等。现在我找到了一个图书馆 migradoc,但我无法找到自动取款机。如何打印/显示当用户按下“创建”按钮时正在创建的文件?

在 PdfSharp 中,我只能说 document.Save(Url)Process.Start(url),但我不能用 Migradoc 做同样的事情。

In my application ,I need to be able to create a PDF report, with header/footer, pictures, text and so on. Right now I have found a librabry migradoc, and i can't figure out atm. how to print/show the file which is getting created when user push "Create" button?

In PdfSharp I can just say document.Save(Url) and Process.Start(url), but I can't do the same with Migradoc.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

雨后咖啡店 2025-01-09 00:46:52

MigraDoc 使用 PDFsharp。您只需调用“保存”并启动,就像使用 PDFsharp 一样:

// Save the document...
const string filename = "HelloWorld.pdf";
pdfRenderer.PdfDocument.Save(filename);
// ...and start a viewer.
Process.Start(filename);

MigraDoc 附带的 HelloWorld 示例中的代码片段。
另请参阅:
http://www.pdfsharp.net/wiki/MigraDocHelloWorld-sample.ashx

MigraDoc uses PDFsharp. You just have to call Save and Start, just like you do with PDFsharp:

// Save the document...
const string filename = "HelloWorld.pdf";
pdfRenderer.PdfDocument.Save(filename);
// ...and start a viewer.
Process.Start(filename);

Code snippet from the HelloWorld sample that comes with MigraDoc.
See also:
http://www.pdfsharp.net/wiki/MigraDocHelloWorld-sample.ashx

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