The VeryUtils HTML to PDF Converter Command Line offers a modern, simple, fast, flexible and powerful tool for creating complex and elegant PDF documents in your applications with just a few lines of code. Using the high quality HTML to PDF conversion engine, you can easily create an HTML document with CSS3, JavaScript, SVG or Canvas and then convert it to PDF, preserving the exact content and style.
https://veryutils.com/html-to-pdf-converter-api
The VeryUtils HTML to PDF Converter command line has the following features:
Incredibly fast and accurate HTML to PDF conversion technology
The HTML to PDF converter offers the fastest and most accurate HTML to PDF conversion technology to use in your Web and Desktop applications. The HTML to PDF converter can convert to PDF from any HTML document or URL that a modern browser can display, preserving all CSS styles and executing all the JavaScript scripts found in the HTML document.
Convert modern HTML5 documents with CSS3, SVG, Canvas and JavaScript
The HTML to PDF converter can render HTML documents with cutting-edge content, such as SVG (Scalar Vector Graphics), Canvas and CSS3 styles. The JavaScript engine is fast, can handle complex scripts and exposes in HTML page objects that you can use to manually trigger the conversion or determine various information about the converter during the conversion.
Support for web fonts and open source web format (WOFF)
The HTML to PDF converter can render HTML documents using Web fonts in formats such as Web Open Font Format (WOFF), TrueType or OpenType with TrueType outlines. Web fonts offer Web designers great flexibility to create special effects in the text of an HTML document, because they are no longer limited to a small set of fonts installed on client computers that display the HTML document. Web fonts are downloaded in real time by converter and used to render the HTML document in PDF without installing these fonts on the local machine. The location from which fonts can be downloaded is provided in a CSS3 @ font-face rule.
No external dependencies, direct copy deployment
The Software does not depend on browsers, printer drivers, viewers or any other installed third party software. The HTML to PDF converter can be deployed simply by copying it to the server.
24x7 technical support
We offer 24x7 sales and technical support.
Simple and flexible licensing, with no downtime or deployment costs
The Software is licensed per developer seat, each developer seat giving the programmer the right to work on applications using our software component. There is no additional runtime or deployment costs charged for using our software component in your applications, the license never expires and includes software updates.
https://veryutils.com/html-to-pdf-converter-api
HTML to PDF Converter - Sample C # code for ASP.NET
using System.Diagnostics;
class Program
{
static void Main()
{
LaunchCommandLineApp();
}
static void LaunchCommandLineApp()
{
// Part 1: use ProcessStartInfo class.
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.CreateNoWindow = false;
startInfo.UseShellExecute = false;
startInfo.FileName = "D:\\VeryUtils\\htmlconv.bin";
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
// Part 2: set arguments.
startInfo.Arguments = "D:\\VeryUtils\\rasterize.js http://www.google.com D:\\out.pdf";
try
{
// Part 3: start with the info we specified.
// ... Call WaitForExit.
using (Process exeProcess = Process.Start(startInfo))
{
exeProcess.WaitForExit();
}
}
catch
{
// Log error.
}
}
}