Table of Contents
- Getting Started
- EO.Pdf
- Overview
- Installation and Deployment
- Using HTML to PDF
- Using HTML to PDF
- Quick Start
- Setting Page Size and Margins
- Resizing Output
- Output Paging
- Web Page Authentication
- HTTP Post and Headers
- JavaScript in HTML
- Conversion Trigger
- Links in HTML
- Page Header and Footer
- Partial Page Conversion
- Repeating Table Header and Footer
- Merging Multiple HTML pages
- Generating Page Images
- Using with PDF Creator
- Creating Interactive Form Elements
- Working with Secure Pages
- Using HtmlToPdfSession object
- Troubleshooting HTML to PDF
- Debugging HTML to PDF
- Using PDF Creator
- Working with Existing PDF Files
- Using in Web Application
- Advanced Topics
- EO.Web
- EO.WebBrowser
- EO.Wpf
- Common Topics
- Reference
Generating Page Images |
EO.Pdf HTML to PDF converter can generate an image for each page while converting HTML to PDF. To enable this feature, set HtmlToPdf.Options.GeneratePageImages to true:
//Generates page images HtmlToPdf.Options.GeneratePageImages = true; //Convert Url HtmlToPdfResult result = HtmlToPdf.ConvertUrl("www.google.com", "result.pdf"); //HtmlToPdfResult.PageImages contains all the page images foreach (Image image in result.PageImages) { .... }