MigraDoc:两次呈现同一文档

MigraDoc: Rendering the same document twice

我想渲染一个 "Document" 对象两次,但在第二代中 PDF 文件显示错误:

Error on this page. Maybe this page couldn't appear correctly. Please talk to the document-creator.

Sorry, it is german...

这是我的示例代码:

using System;
using System.Windows.Forms;
using MigraDoc.Rendering;
using MigraDoc.DocumentObjectModel;
using PdfSharp.Pdf;
using System.Diagnostics;

namespace Temp
{
    public partial class Form1 : Form
    {
        Document document; //using the same document- and renderer-object ..
        PdfDocumentRenderer renderer; //..creates the error

        public Form1()
        {
            InitializeComponent();
            document = new Document();
            renderer = new PdfDocumentRenderer(false, PdfFontEmbedding.Always);
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Section section = document.AddSection();
            Paragraph paragraph = section.AddParagraph();
            paragraph.AddFormattedText("Hello World", TextFormat.Bold);

            SaveFile(renderer);
        }

        private void SaveFile(PdfDocumentRenderer renderer)
        {
            renderer.Document = document;
            renderer.RenderDocument();
            string pdfFilename = string.Format("Rekla-{0:dd.MM.yyyy_hh-mm-ss}.pdf", DateTime.Now);
            renderer.PdfDocument.Save(pdfFilename);
            Process.Start(pdfFilename);
        }
    }
}

当然我总是可以创建一个新的 "Document"-object:

private void button1_Click(object sender, EventArgs e)
{
    Document document = new Document(); //Creating a new document-object solves the problem..
    PdfDocumentRenderer renderer = new PdfDocumentRenderer(false, PdfFontEmbedding.Always);
    Section section = document.AddSection();
    Paragraph paragraph = section.AddParagraph();
    paragraph.AddFormattedText("Hi", TextFormat.Bold);

    SaveFile(renderer, document);
}

这行得通。但是我需要在执行其他按钮单击事件时更改当前文档。第二个代码片段无法解决此任务。

有人知道如何修复第一个代码片段吗?

不要重复使用渲染器。在SaveFile方法中新建一个Renderer,一切正常。

如果新的 Renderer 不够用,请调用 document.Clone() 并将其分配给 Renderer。

我发现一种对将 Migradoc pdf 重复保存到文件非常有用的方法是在渲染文档时将文档保存到 MemoryStream/byte 数组。然后当我需要保存pdf文件时,我只保存字节数组。

将此部分放入您要呈现文档的构造函数中:

// First we render our document and save it to a byte array
bytes[] documentBytes;
Document doc;
using (System.IO.MemoryStream ms = new System.IO.MemoryStream())
{
   PdfDocumentRenderer pdfRender = new PdfDocumentRenderer();
   pdfRender.Document = doc;
   pdfRender.RenderDocument();
   pdfRender.Save(ms, false);
   documentBytes = ms.ToArray();
}

将此部分放入您要保存到文件的按钮事件中:

// Then we save the byte array to a file when needed
string filename;
using (System.IO.FileStream fs = new System.IO.FileStream(filename, System.IO.FileMode.Create))
{
    fs.Write(documentBytes, 0, documentBytes.Length);
}