Winnovative Logo

PdfToHtmlConverter Class

Winnovative Client for .NET Core
This class encapsulates the PDF to HTML Converter functionality and allows you to convert the PDF document pages to HTML documents
Inheritance Hierarchy

SystemObject
  WinnovativeClientPdfToHtmlConverter

Namespace:  WinnovativeClient
Assembly:  WinnovativeClient_NetCore (in WinnovativeClient_NetCore.dll) Version: 17.0.0
Syntax

public class PdfToHtmlConverter

The PdfToHtmlConverter type exposes the following members.

Constructors

  NameDescription
Public methodPdfToHtmlConverter
Constructs a PDF to HTML converter which will connect to localhost on the default port
Public methodPdfToHtmlConverter(String)
Constructs a PDF to HTML converter which will connect to the server specified by IP or by name on the default port
Public methodPdfToHtmlConverter(Boolean, String)
Constructs a PDF to HTML converter which will connect to a web service URL
Public methodPdfToHtmlConverter(String, UInt32)
Constructs a PDF to HTML converter which will connect to the server specified by IP or by name on the specified port
Top
Properties

  NameDescription
Public propertyClientProxy
You can set this property with an object implementing the IWebProxy interface to be used when accessing the server through a proxy server. This property does not have any effect when using a TCP Service
Public propertyCreateIndexFile
A flag controlling if a HTML index file is also created when the PDF pages are converted to HTML files. The default value is true
Public propertyIgnoreHiddenText
A flag controlling if the hidden text from PDF is rendered to HTML. The default value is true
Public propertyImpersonationOptions
The impersonation options used during tool execution
Public propertyLicenseKey
Gets or sets the license key string received from vendor. If this property is null the tool will automatically enter in evaluation mode
Public propertyOwnerPassword
The owner password to be used to open a password protected PDF document
Public propertyPdfDocumentInfo
Gets the object encapsulating the PDF document properties. This objects is populated after tool execution finished
Public propertyPdfToolFullPath
Sets the full path of the .dat helper file. By default this file is expected to be found in the same folder with .dll assembly.
Public propertyPort
The server port number
Public propertyResolution
The resolution in DPI of the HTML images. The default value is 150
Public propertyRunTimeoutSec
The maximum time allowed for this tool to run
Public propertyServer
The server IP or name
Public propertyServicePassword
Gets or sets the HTML to PDF converter service password. You have to set this property if the HTML to PDF service is password protected.
Public propertyUserPassword
The user password to be used to open a password protected PDF document
Public propertyUseWebService
A flag indicating if the client library will call the Web service or the TCP service to perform the operation
Public propertyWebServiceUrl
The web service URL
Public propertyZoom
The zoom percentage of the generated HTML content. The default value is 100
Top
Methods

  NameDescription
Public methodConvertPdfPagesToHtml(Byte)
Converts all the pages in a PDF document to HTML documents
Public methodConvertPdfPagesToHtml(Stream)
Converts all the pages of PDF document in a stream to HTML documents
Public methodConvertPdfPagesToHtml(String)
Converts all the pages of a PDF file to HTML documents
Public methodConvertPdfPagesToHtml(Byte, Int32)
Converts the pages of a PDF document to HTML documents starting from a given PDF page number to the end of the PDF document
Public methodConvertPdfPagesToHtml(Stream, Int32)
Converts the pages of a PDF document in a stream to HTML documents starting from a given PDF page number to the end of the PDF document
Public methodConvertPdfPagesToHtml(String, Int32)
Converts the pages of a PDF file to HTML documents starting from a given PDF page number to the end of the PDF document
Public methodConvertPdfPagesToHtml(Byte, Int32, Int32)
Converts a range of pages of a PDF document to HTML documents
Public methodConvertPdfPagesToHtml(Stream, Int32, Int32)
Converts a range of pages of a PDF document in a stream to HTML documents
Public methodConvertPdfPagesToHtml(String, Int32, Int32)
Converts a range of pages of a PDF file to HTML documents
Public methodConvertPdfPagesToHtmlFile(Byte, String, String)
Converts all the pages in a PDF document to HTML files. You can use the CreateIndexFile property to enable or disable the creation of a HTML index file
Public methodConvertPdfPagesToHtmlFile(Stream, String, String)
Converts all the pages of PDF document in a stream to HTML files. You can use the CreateIndexFile property to enable or disable the creation of a HTML index file
Public methodConvertPdfPagesToHtmlFile(String, String, String)
Converts all the pages of a PDF file to HTML files. You can use the CreateIndexFile property to enable or disable the creation of a HTML index file
Public methodConvertPdfPagesToHtmlFile(Byte, Int32, String, String)
Converts the pages of a PDF document to HTML files starting from a given PDF page number to the end of the PDF document. You can use the CreateIndexFile property to enable or disable the creation of a HTML index file
Public methodConvertPdfPagesToHtmlFile(Stream, Int32, String, String)
Converts the pages of a PDF document in a stream to HTML files starting from a given PDF page number to the end of the PDF document. You can use the CreateIndexFile property to enable or disable the creation of a HTML index file
Public methodConvertPdfPagesToHtmlFile(String, Int32, String, String)
Converts the pages of a PDF file to HTML files starting from a given PDF page number to the end of the PDF document. You can use the CreateIndexFile property to enable or disable the creation of a HTML index file
Public methodConvertPdfPagesToHtmlFile(Byte, Int32, Int32, String, String)
Converts a range of pages of a PDF document to HTML files. You can use the CreateIndexFile property to enable or disable the creation of a HTML index file
Public methodConvertPdfPagesToHtmlFile(Stream, Int32, Int32, String, String)
Converts a range of pages of a PDF document in a stream to HTML files. You can use the CreateIndexFile property to enable or disable the creation of a HTML index file
Public methodConvertPdfPagesToHtmlFile(String, Int32, Int32, String, String)
Converts a range of pages of a PDF file to HTML files. You can use the CreateIndexFile property to enable or disable the creation of a HTML index file
Public methodConvertPdfPagesToHtmlInEvent(Byte)
Converts all the pages in a PDF document to HTML documents and raises the PageConvertedEvent event immediately after a PDF page was converted. The event handler argument contains a reference to resulted HTML document
Public methodConvertPdfPagesToHtmlInEvent(Stream)
Converts all the pages of PDF document in a stream to HTML documents and raises the PageConvertedEvent event immediately after a PDF page was converted. The event handler argument contains a reference to resulted HTML document
Public methodConvertPdfPagesToHtmlInEvent(String)
Converts all the pages of a PDF file to HTML documents and raises the PageConvertedEvent event immediately after a PDF page was converted. The event handler argument contains a reference to resulted HTML document
Public methodConvertPdfPagesToHtmlInEvent(Byte, Int32)
Converts the pages of a PDF document to HTML documents starting from a given PDF page number to the end of the PDF document and raises the PageConvertedEvent event immediately after a PDF page was converted. The event handler argument contains a reference to resulted HTML document
Public methodConvertPdfPagesToHtmlInEvent(Stream, Int32)
Converts the pages of a PDF document in a stream to HTML documents starting from a given PDF page number to the end of the PDF document and raises the PageConvertedEvent event immediately after a PDF page was converted. The event handler argument contains a reference to resulted HTML document
Public methodConvertPdfPagesToHtmlInEvent(String, Int32)
Converts the pages of a PDF file to HTML documents starting from a given PDF page number to the end of the PDF document and raises the PageConvertedEvent event immediately after a PDF page was converted. The event handler argument contains a reference to resulted HTML document
Public methodConvertPdfPagesToHtmlInEvent(Byte, Int32, Int32)
Converts a range of pages of a PDF document to HTML documents and raises the PageConvertedEvent event immediately after a PDF page was converted. The event handler argument contains a reference to resulted HTML document
Public methodConvertPdfPagesToHtmlInEvent(Stream, Int32, Int32)
Converts a range of pages of a PDF document in a stream to HTML documents and raises the PageConvertedEvent event immediately after a PDF page was converted. The event handler argument contains a reference to resulted HTML document
Public methodConvertPdfPagesToHtmlInEvent(String, Int32, Int32)
Converts a range of pages of a PDF file to HTML documents and raises the PageConvertedEvent event immediately after a PDF page was converted. The event handler argument contains a reference to resulted HTML document
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetPageCount(Byte)
Gets the number of PDF pages of a PDF document
Public methodGetPageCount(Stream)
Gets the number of pages of a PDF document in a stream
Public methodGetPageCount(String)
Gets the number of PDF pages of a PDF file
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
Events

  NameDescription
Public eventPageConvertedEvent
The event which is raised immediately after a PDF page was converted. You can raise this event by calling the methods with 'InEvent' suffix like ConvertPdfPagesToHtmlInEvent(String)
Top
See Also

Reference