EVO HTML to PDF Converter

PdfConverter Methods

EVO HTML to PDF Converter for .NET Documentation

The PdfConverter type exposes the following members.

Methods

  NameDescription
Public methodConvertHtml(String, String)
Converts a HTML string to PDF using a base URL to resolve external resources and returns the rendered PDF document into a memory buffer
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtml(String, String, String)
Converts a HTML string to PDF using a base URL to resolve external resources and an internal links base URL and returns the rendered PDF document into a memory buffer
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtmlFile
Converts a HTML file to PDF and returns the rendered PDF document into a memory buffer
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtmlFileToFile
Converts a HTML file to PDF and writes the rendered PDF document into a file
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtmlFileToPdfDocumentObject
Converts a HTML file to PDF and returns the rendered PDF document as an object of the Document class that can be further used in other operations requiring this type of objects
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtmlFileToStream
Converts a HTML file to PDF and writes the rendered PDF document into a stream
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtmlStream(Stream, Encoding, String)
Converts a HTML string read from a stream to PDF using a base URL to resolve external resources and returns the rendered PDF document into a memory buffer
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtmlStream(Stream, Encoding, String, String)
Converts a HTML string read from a stream to PDF using a base URL to resolve external resources and an internal links base URL and returns the rendered PDF document into a memory buffer
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtmlStreamToFile(Stream, Encoding, String, String)
Converts a HTML string read from a stream to PDF using a base URL to resolve external resources and writes the rendered PDF document into a file
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtmlStreamToFile(Stream, Encoding, String, String, String)
Converts a HTML string read from a stream to PDF using a base URL to resolve external resources and an internal links base URL and writes the rendered PDF document into a file
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtmlStreamToPdfDocumentObject(Stream, Encoding, String)
Converts a HTML string read from a stream to PDF using a base URL to resolve external resources and returns the rendered PDF document as an object of the Document class that can be further used in other operations requiring this type of objects.
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtmlStreamToPdfDocumentObject(Stream, Encoding, String, String)
Converts a HTML string read from a stream to PDF using a base URL to resolve external resources and an internal links and returns the rendered PDF document as an object of the Document class that can be further used in other operations requiring this type of objects.
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtmlStreamToStream(Stream, Encoding, String, Stream)
Converts a HTML string read from a stream to PDF using a base URL to resolve external resources and writes the rendered PDF document into a stream
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtmlStreamToStream(Stream, Encoding, String, String, Stream)
Converts a HTML string read from a stream to PDF using a base URL to resolve external resources and an internal links base URL and writes the rendered PDF document into a stream
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtmlToFile(String, String, String)
Converts a HTML string to PDF using a base URL to resolve external resources and writes the rendered PDF document into a file
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtmlToFile(String, String, String, String)
Converts a HTML string to PDF using a base URL to resolve external resources and an internal links base URL and writes the rendered PDF document into a file
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtmlToPdfDocumentObject(String, String)
Converts a HTML string to PDF using a base URL to resolve external resources and returns the rendered PDF document as an object of the Document class that can be further used in other operations requiring this type of objects.
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtmlToPdfDocumentObject(String, String, String)
Converts a HTML string to PDF using a base URL to resolve external resources and an internal links base URL and returns the rendered PDF document as an object of the Document class that can be further used in other operations requiring this type of objects.
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtmlToStream(String, String, Stream)
Converts a HTML string to PDF using a base URL to resolve external resources and writes the rendered PDF document into a stream
(Inherited from HtmlToPdfConverter.)
Public methodConvertHtmlToStream(String, String, String, Stream)
Converts a HTML string to PDF using a base URL to resolve external resources and an internal links base URL and writes the rendered PDF document into a stream
(Inherited from HtmlToPdfConverter.)
Public methodConvertUrl
Converts an URL to PDF and returns the rendered PDF document into a memory buffer
(Inherited from HtmlToPdfConverter.)
Public methodConvertUrlToFile
Converts an URL to PDF and writes the rendered PDF document into a file
(Inherited from HtmlToPdfConverter.)
Public methodConvertUrlToPdfDocumentObject
Converts an URL to PDF and returns the rendered PDF document as an object of the Document class that can be further used in other operations requiring this type of objects
(Inherited from HtmlToPdfConverter.)
Public methodConvertUrlToStream
Converts an URL to PDF and writes the rendered PDF document into a stream
(Inherited from HtmlToPdfConverter.)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetPdfBytesFromHtmlFile
Converts a HTML file to PDF. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlFile(String) method in the future versions
Public methodGetPdfBytesFromHtmlStream(Stream, Encoding)
Converts a HTML from a stream to PDF. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlStream(Stream, Encoding, String) method in the future versions
Public methodGetPdfBytesFromHtmlStream(Stream, Encoding, String)
Converts a HTML from a stream to PDF using a base URL. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlStream(Stream, Encoding, String) method in the future versions
Public methodGetPdfBytesFromHtmlStream(Stream, Encoding, String, String)
Converts a HTML from a stream to PDF using a base URL and an internal links base URL. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlStream(Stream, Encoding, String, String) method in the future versions
Public methodGetPdfBytesFromHtmlString(String)
Converts a HTML string to PDF. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtml(String, String) method in the future versions
Public methodGetPdfBytesFromHtmlString(String, String)
Converts a HTML string to PDF using a base URL. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtml(String, String) method in the future versions
Public methodGetPdfBytesFromHtmlString(String, String, String)
Converts a HTML string to PDF using a base URL and an internal links base URL. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtml(String, String, String) method in the future versions
Public methodGetPdfBytesFromUrl
Converts an URL to PDF. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertUrl(String) method in the future versions
Public methodGetPdfDocumentObjectFromHtmlFile
Converts a HTML file to a PDF document object. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlFileToPdfDocumentObject(String) method in the future versions
Public methodGetPdfDocumentObjectFromHtmlStream(Stream, Encoding)
Converts a HTML from a stream to PDF document object. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlStreamToPdfDocumentObject(Stream, Encoding, String) method in the future versions
Public methodGetPdfDocumentObjectFromHtmlStream(Stream, Encoding, String)
Converts a HTML from a stream to a PDF document object using a base URL. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlStreamToPdfDocumentObject(Stream, Encoding, String) method in the future versions
Public methodGetPdfDocumentObjectFromHtmlStream(Stream, Encoding, String, String)
Converts a HTML from a stream to a PDF document object using a base URL and an internal links base URL. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlStreamToPdfDocumentObject(Stream, Encoding, String, String) method in the future versions
Public methodGetPdfDocumentObjectFromHtmlString(String)
Converts a HTML string to PDF document object. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlToPdfDocumentObject(String, String) method in the future versions
Public methodGetPdfDocumentObjectFromHtmlString(String, String)
Converts a HTML string to a PDF document object using a base URL. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlToPdfDocumentObject(String, String) method in the future versions
Public methodGetPdfDocumentObjectFromHtmlString(String, String, String)
Converts a HTML string to a PDF document object using a base URL and an internal links base URL. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlToPdfDocumentObject(String, String, String) method in the future versions
Public methodGetPdfDocumentObjectFromUrl
Converts an URL to PDF document object. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertUrlToPdfDocumentObject(String) method in the future versions
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodSavePdfFromHtmlFileToFile
Converts a HTML file to PDF and saves the rendered PDF document into a file. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlFileToFile(String, String) method in the future versions
Public methodSavePdfFromHtmlFileToStream
Converts a HTML file to PDF and saves the rendered PDF document into a stream. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlFileToStream(String, Stream) method in the future versions
Public methodSavePdfFromHtmlStreamToFile(Stream, Encoding, String)
Converts the HTML string read from a stream to PDF and saves the rendered PDF document into a stream. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlStreamToFile(Stream, Encoding, String, String) method in the future versions
Public methodSavePdfFromHtmlStreamToFile(Stream, Encoding, String, String)
Converts a HTML string read from a stream to PDF using a base URL and saves the rendered PDF document into a fil. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlStreamToFile(Stream, Encoding, String, String) method in the future versions
Public methodSavePdfFromHtmlStreamToFile(Stream, Encoding, String, String, String)
Converts a HTML string read from a stream to PDF using a base URL and an internal links base URL and saves the rendered PDF document into a fil. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlStreamToFile(Stream, Encoding, String, String, String) method in the future versions
Public methodSavePdfFromHtmlStreamToStream(Stream, Encoding, Stream)
Converts the HTML string read from a stream to PDF and saves the rendered PDF document into a stream. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlStreamToStream(Stream, Encoding, String, Stream) method in the future versions
Public methodSavePdfFromHtmlStreamToStream(Stream, Encoding, String, Stream)
Converts a HTML string read from a stream to PDF using a base URL and saves the rendered PDF document into a stream. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlStreamToStream(Stream, Encoding, String, Stream) method in the future versions
Public methodSavePdfFromHtmlStreamToStream(Stream, Encoding, String, String, Stream)
Converts a HTML string read from a stream to PDF using a base URL and an internal links base URL and saves the rendered PDF document into a stream. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlStreamToStream(Stream, Encoding, String, String, Stream) method in the future versions
Public methodSavePdfFromHtmlStringToFile(String, String)
Converts a HTML string to PDF and saves the rendered PDF document into a file. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlToFile(String, String, String) method in the future versions
Public methodSavePdfFromHtmlStringToFile(String, String, String)
Converts a HTML string to PDF using a base URL and saves the rendered PDF document into a file. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlToFile(String, String, String) method in the future versions
Public methodSavePdfFromHtmlStringToFile(String, String, String, String)
Converts a HTML string to PDF using a base URL and an internal links base URL and saves the rendered PDF document into a file. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlToFile(String, String, String, String) method in the future versions
Public methodSavePdfFromHtmlStringToStream(String, Stream)
Converts a HTML string to PDF and saves the rendered PDF document into a stream. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlToStream(String, String, Stream) method in the future versions
Public methodSavePdfFromHtmlStringToStream(String, String, Stream)
Converts a HTML string to PDF using a base URL and saves the rendered PDF document into a stream. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlToStream(String, String, Stream) method in the future versions
Public methodSavePdfFromHtmlStringToStream(String, String, String, Stream)
Converts a HTML string to PDF using a base URL and an internal links base URL and saves the rendered PDF document into a stream. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertHtmlToStream(String, String, String, Stream) method in the future versions
Public methodSavePdfFromUrlToFile
Converts an URL to PDF and saves the rendered PDF document into a file. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertUrlToFile(String, String) method in the future versions
Public methodSavePdfFromUrlToStream
Converts an URL to PDF and saves the rendered PDF document into a stream. This method is still present in the API to maintain the backward compatibility and it will be replaced by ConvertUrlToStream(String, Stream) method in the future versions
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also

Reference