The DocumentWriterEmptyPage class derives from DocumentWriterPage and contains the data for one empty page to be added to a document file. It is used as a parameter to the DocumentWriter.AddPage or DocumentWriter.InsertPage methods used to add the page.
The LEADTOOLS Document Writer supports creating documents with zero or more empty pages inside them. Simply add a page with type DocumentWriterEmptyPage and call the DocumentWriter.AddPage or DocumentWriter.InsertPage methods. The dimension of the empty page must be set before hand in the DocumentWriterEmptyPage.Width and DocumentWriterEmptyPage.Height and its resolution set to DocumentOptions.EmptyPageResolution. As many empty pages as desired can be added in any index desired. To use empty pages, make sure the DocumentOptions.PageRestriction property is set to DocumentPageRestriction.Relaxed.
For more information, refer to PdfDocumentOptions.
using Leadtools;using Leadtools.Codecs;using Leadtools.Document.Writer;using Leadtools.Ocr;public void DocumentRasterPageExample(){// Input file namevar inputFileName = Path.Combine(LEAD_VARS.ImagesDir, "TEST.docx");// Output PDF file namevar outputFileName = Path.Combine(LEAD_VARS.ImagesDir, "out_Example.pdf");// Create a new instance of the LEADTOOLS Document Writervar docWriter = new DocumentWriter();// Setup a new RasterCodecs objectusing (var codecs = new RasterCodecs()){codecs.Options.RasterizeDocument.Load.Resolution = 300;// Get information on the pagedouble pageWidth;double pageHeight;using (var info = codecs.GetInformation(inputFileName, false, 1)){// Get the size in inches, we need it for the empty pagepageWidth = info.Document.PageWidth;pageHeight = info.Document.PageHeight;}// Begin the documentdocWriter.BeginDocument(outputFileName, DocumentFormat.Pdf);// Add the first page from SVGvar svgPage = new DocumentWriterSvgPage();using (svgPage.SvgDocument = codecs.LoadSvg(inputFileName, 1, null)){// Add itdocWriter.AddPage(svgPage);}// Add a second page as emptyvar emptyPage = new DocumentWriterEmptyPage();emptyPage.Width = pageWidth;emptyPage.Height = pageHeight;docWriter.AddPage(emptyPage);// Finally, add a third page as an imagevar rasterPage = new DocumentWriterRasterPage();using (rasterPage.Image = codecs.Load(inputFileName, 1)){// Add itdocWriter.AddPage(rasterPage);}}// Finally finish writing the HTML file on diskdocWriter.EndDocument();}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images";}