PDFsharp save to MemoryStream

前端 未结 5 748
星月不相逢
星月不相逢 2021-01-31 15:12

I want to save a PdfSharp.Pdf.PdfDocument by its Save method to a Stream, but it doesn\'t attach the PDF header settings to it. So when I read back the Stream and return it to t

5条回答
  •  我在风中等你
    2021-01-31 15:57

    If you think there is an issue with PdfDocument.Save, then please report this on the PDFsharp forum (but please be more specific with your error description). Your "solution" looks like a hack to me. "pdfRenderer.Save" calls "PdfDocument.Save" internally. Whatever the problem is - your "solution" still calls the same Save routine.

    Edit: To get a byte[] containing a PDF file, you only have to call:

    MemoryStream stream = new MemoryStream();
    document.Save(stream, false);
    byte[] bytes = stream.ToArray();
    

    Early versions of PDFsharp do not reset the stream position.

    So you have to call

    ms.Seek(0, SeekOrigin.Begin); 
    

    to reset the stream position before reading from the stream; this is no longer required for current versions.

    Using ToArray can often be used instead of reading from the stream.

    Edit 2: instead of stream.ToArray() it may be more efficient to use stream.GetBuffer(), but this buffer is usually larger than the PDF file and you only have to use stream.Length bytes from that buffer. Very useful for method that take a byte[] along with a length parameter.

提交回复
热议问题