To merge multiple PDF pages into one document using MigraDoc in C#, you can follow these steps:
PdfDocument
object.main.cs42 chars2 lines
Section
in the document.main.cs41 chars2 lines
AddImage()
method, which takes a PdfDocument
object representing the page to be added.main.cs489 chars16 lines
main.cs31 chars2 lines
PdfDocument
object.main.cs20 chars2 lines
Here, I've assumed that you have defined a ConvertPdfPageToStream()
method which converts a PdfPage
to a MemoryStream
object.
main.cs443 chars14 lines
This method adds the PdfPage
to a new PdfDocument
object and then saves it to a MemoryStream
, which is returned.
gistlibby LogSnag