Search code examples
c#asp.netpdfsharphtml-renderer

HTML Renderer/PDFsharp Combine Two HTML-Generated PDF Documents


I am trying to add two pages in one document. These two pages are generated from HTML.

Info : HTML Renderer for PDF using PDFsharp, HtmlRenderer.PdfSharp 1.5.0.6

            var config = new PdfGenerateConfig
        {
            PageOrientation = PageOrientation.Portrait,
            PageSize = PageSize.A4,
            MarginBottom = 0,
            MarginLeft = 0,
            MarginRight = 0,
            MarginTop = 0
        };
            string pdfFirstPage = CreateHtml();
            string pdfsecondPage = CreateHtml2();   
            PdfDocument doc=new PdfDocument();
            doc.AddPage(new PdfPage(PdfGenerator.GeneratePdf(pdfFirstPage, config)));
            doc.AddPage(new PdfPage(PdfGenerator.GeneratePdf(pdfsecondPage, config)));

I tried few ways, but the most given error is Import Mode. This is the last test, but it is not successful .How can I combine two pages generated from HTML strings as 2 pages in 1 document and download it?


Solution

  • Here is code that works:

    static void Main(string[] args)
    {
        PdfDocument pdf1 = PdfGenerator.GeneratePdf("<p><h1>Hello World</h1>This is html rendered text #1</p>", PageSize.A4);
        PdfDocument pdf2 = PdfGenerator.GeneratePdf("<p><h1>Hello World</h1>This is html rendered text #2</p>", PageSize.A4);
    
        PdfDocument pdf1ForImport = ImportPdfDocument(pdf1);
        PdfDocument pdf2ForImport = ImportPdfDocument(pdf2);
    
        var combinedPdf = new PdfDocument();
    
        combinedPdf.Pages.Add(pdf1ForImport.Pages[0]);
        combinedPdf.Pages.Add(pdf2ForImport.Pages[0]);
    
        combinedPdf.Save("document.pdf");
    }
    
    private static PdfDocument ImportPdfDocument(PdfDocument pdf1)
    {
        using (var stream = new MemoryStream())
        {
            pdf1.Save(stream, false);
            stream.Position = 0;
            var result = PdfReader.Open(stream, PdfDocumentOpenMode.Import);
            return result;
        }
    }
    

    I save the PDF document to a MemoryStream and open them for import. This allows to add the pages to a new PdfDocument. Only the first page of the documents is used for simplicity - add loops as needed.