Hi,
Can you please confirm if you have any product that Convert HTML to PDF file and have a SDK or API to be integrated in C# development solutions?
If yes, can you please share also more information about purchase / pricing details ?
Best Regards,
Customer
------------------------------------------
Please download "HTML Converter Command Line (htmltools.exe)" from following web page to try, you can call htmltools.exe from C# code to convert HTML files to PDF files quickly,
https://www.verypdf.com/app/html-converter/try-and-buy.html#cmd
You can use following C# code to call htmltools.exe to convert web page or HTML file to PDF file easily,
using System.Diagnostics;
class Program
{
static void Main()
{
LaunchCommandLineApp();
}
/// <summary>
/// Launch the legacy application with some options set.
/// </summary>
static void LaunchCommandLineApp()
{
// Use ProcessStartInfo class
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.CreateNoWindow = false;
startInfo.UseShellExecute = false;
startInfo.FileName = "D:\\VeryPDF\\htmltools.exe";
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.Arguments = "-webkit http://www.verypdf.dom D:\\output.pdf";
//startInfo.Arguments = "-html2pdf2 http://www.verypdf.dom D:\\output.pdf";
//startInfo.Arguments = "http://www.verypdf.dom D:\\output.pdf";
try
{
// Start the process with the info we specified.
// Call WaitForExit and then the using statement will close.
using (Process exeProcess = Process.Start(startInfo))
{
exeProcess.WaitForExit();
}
}
catch
{
// Log error.
}
}
}
See Also:
Royalty free HTML to PDF Converter SDK,
https://www.verypdf.com/htmltools/html-to-pdf-sdk.html
How to Convert a HTML file or Web Pages to PDF file via Command Line?
https://www.verypdf.com/pdfcamp/convert-html-to-pdf.html
VeryPDF Cloud API Platform :: Web Page to PDF & Image Converter Cloud API :: Convert Web Page to PDF and Image files, Website Screenshot, Web Page snapshot, Capture full Web Page screenshots
https://www.verypdf.com/wordpress/201308/verypdf-cloud-api-platform-web-page-to-pdf-image-converter-cloud-api-convert-web-page-to-pdf-and-image-files-website-screenshot-web-page-snapshot-capture-full-web-page-screenshots-37937.html
How to convert whole website to one PDF and control size?
https://www.verypdf.com/wordpress/201308/how-to-convert-whole-website-to-one-pdf-and-control-size-38196.html