'Is there any wat to fit the content into single page in Select PDF .Net Core?

I have written a code in .Net Core that converts the html into pdf. The nuget manager tools I used for this conversion in SelectPdf.

                SelectPdf.HtmlToPdf pdf = new SelectPdf.HtmlToPdf();
                System.Drawing.SizeF size = new System.Drawing.SizeF(750, 750);
                pdf.Options.PdfPageCustomSize = size;
                pdf.Options.PdfPageSize = SelectPdf.PdfPageSize.A4;

                SelectPdf.PdfDocument pdfDoc = pdf.ConvertHtmlString(html);

                using var ms = new MemoryStream();
                pdfDoc.Save(ms);
                return ms.ToArray();

The code is working fine, currently, the size is in A4. The problem is when there is a huge amount of data in HTML the data is split into different pages example the below.

enter image description here

Is there any way so that all the content in the HTML remains on the same page in pdf?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source