HtmlToPdfConverter Class

This class is the main class of the HTML to PDF Converter which offers the necessary methods to create a PDF document from a web page at given URL or from a HTML string. The generated PDF document can be saved into a memory buffer or into a file

Definition

Namespace: EvoPdf.Chromium
Assembly: EvoPdf.Chromium (in EvoPdf.Chromium.dll) Version: 11.4.0
C#
public class HtmlToPdfConverter
Inheritance
Object    HtmlToPdfConverter

Constructors

HtmlToPdfConverter Creates a HTML to PDF converter object with default options

Properties

AuthenticationOptions This property can be set with a username and password to authenticate with the web server before accessing the HTML page
AutoResizeHtmlViewerHeight This property controls if the HTML viewer will be automatically resized to the HTML content height determined after the initial loading, followed by a content reload. The auto resized height is limited by the MaxHtmlViewerHeight property. This is useful to render web pages which load only the content which is visible in browser viewport. By default this property is false
ConversionDelay An additional time in seconds to wait for asynchronous items to be completely loaded or for a web page redirect to finish before starting the rendering in HTML to PDF converter. It is used when the conversion triggering mode is Auto. Default value is 0
DigitalSignature The digital signature to apply to generated PDF document
GpuCompositingEnabled A flag indicating if the GPU compositing is enabled in the HTML to PDF converter. WebGL rendering requires this option to be enabled. The default value is false
GpuRenderingEnabled A flag indicating if the GPU rendering is enabled in the HTML to PDF converter. The default value is true
HtmlLoaderFilePath Sets the full path of HTML loader file
HtmlViewerHeight Gets or sets the intial HTML viewer height in pixels. The default value is 2048 pixels
HtmlViewerWidth Gets or sets the preferred HTML viewer width in pixels. The default value is 1024 pixels
HtmlViewerZoom Gets or sets the HTML viewer zoom percentage as a positive number between 0 and 200 similar to zoom level in a browser. The default value of this property is 100
HttpPostFields Returns the collection of HTTP POST fields to be used when accessing a web page in HTML to PDF converter. If there are elements in collection then the converter will make a POST request to the web page URL with the fields from this collection, otherwise it will make a GET request
HttpRequestCookies Gets a collection of custom HTTP cookies to be sent by the HTML to PDF converter to the web server when the web page to convert and the resources (image, css, etc) referenced by the web page are requested. A cookie is defined by a name and a value pair that can be added to the collection using the Add(String, String) method of the HttpRequestCookies property.
HttpRequestHeaders Gets a collection of custom HTTP headers to be sent by the HTML to PDF converter to the web server when the web page is requested from a URL. A custom HTTP header is defined by a name and a value pair that can be added to the collection using the Add(String, String) method of the HttpRequestHeaders property. The custom HTTP headers can be used to define cookies, authentication options, URL referrer or any other HTTP header to be sent to the web browser. The preferred method to send cookies is to use the HttpRequestCookies property.
JavaScriptEnabled A flag indicating if JavaScript execution is enabled in HTML to PDF converter. The default is true.
LazyImagesLoadMode The lazy image loading mode used by the HTML to PDF converter. This flag has effect only if LoadLazyImages is also true. The default mode is Browser
LicenseKey Gets or sets the license key string received from the vendor in HTML to PDF converter. If this property is null the converter will automatically enter in evaluation mode and a demo watermark will be displayed on the generated PDF document. Internally, this property gets or sets the value of the Licensing.LicenseKey property
LoadLazyImages A flag indicating whether the lazy images are loaded during the HTML to PDF conversion. By default, this property is set to true. For optimal performance, you can set this property to false
LocalFilesEnabled This property controls if the converter can convert local file. The default value is true
LocalhostEnabled This property controls if the converter can convert URLs from localhost. The default value is true
MaxHtmlViewerHeight Gets or sets the maximum HTML viewer height in pixels. Value 0 means unlimited. The default value is 32000 pixels
MediaType Gets or sets the media type of the HTML document used by the HTML to PDF converter. By default is not set to any value and the rendering will be for 'screen' CSS media
NavigationTimeout The HTML to PDF converter navigation timeout in seconds. Default value is 120
PdfDocumentInfo Gets a reference to the object to controlling the generated PDF document information like the document title, author, subject or creation date.
PdfDocumentOptions Gets a reference to the object controlling the conversion process and the generated PDF document properties like PDF document margins, PDF page size and orientation, PDF document header and footer
PdfSecurityOptions Gets a reference to the object to controlling the generated PDF document security settings like user and owner password, restrict printing or editing of the generated PDF document.
PdfViewerPreferences Gets a reference to the object controlling how the generated PDF is displayed by a PDF viewer.
PersistentHttpRequestHeaders This property can be set to `true` to instruct the HTML to PDF converter to send the custom headers defined by the `HttpRequestHeaders` property whenever an external resource (e.g., images, CSS, etc.) referenced by the web page is requested. The default value of this property is `false`
ScriptToExecuteAfterLoad A JavaScript code to execute immediately after the page was loaded. It can be used to automatically click buttons or for other operations before conversion. By default this property is null
TriggeringMode The conversion triggering mode used by the HTML to PDF converter. The default value is Auto.
UncPathEnabled This property controls if the converter can convert files from local network. The default value is true
UseDelayForViewerResize This property controls if the ConversionDelay is also applied during the initial loading when the HTML content size is determined. This propery has effect only if the AutoResizeHtmlViewerHeight flag is on. By default this property is false for faster conversion
WaitForAfterLoadScript A flag indicating if the HTML to PDF converter should wait for the script specified by ScriptToExecuteAfterLoad to finish execution before continuing conversion. By default, this flag is set to false and the HTML to PDF conversion continues immediately after the script is injected

Methods

ConvertHtml Converts a HTML string to PDF using a base URL to resolve external resources and returns the rendered PDF document into a memory buffer
ConvertHtmlToFile Converts a HTML string to PDF using a base URL to resolve external resources and writes the rendered PDF document into a file
ConvertUrl Converts an URL to PDF and returns the rendered PDF document into a memory buffer
ConvertUrlToFile Converts an URL to PDF and writes the generated PDF document into a file
Equals
(Inherited from Object)
Finalize
(Inherited from Object)
GetHashCode
(Inherited from Object)
GetType
(Inherited from Object)
MemberwiseClone
(Inherited from Object)
ToString
(Inherited from Object)

See Also