Convert HTML file to PDF file
in C# and VB.Net.
Complete code
using System;
using System.IO;
namespace Sample
{
class Test
{
static void Main(string[] args)
{
// Convert HTML file/url to PDF file.
SautinSoft.PdfVision v = new SautinSoft.PdfVision();
//v.Serial = "XXXXXXXXXXXXXXX";
// Specify the conversion options.
v.PageStyle.PageSize.Auto();
//v.PageStyle.PageMarginLeft.Inch(1);
//v.ImageStyle.Heightmm(150);
//v.ImageStyle.WidthInch(10);
// Specify top and bottom page margins.
//v.PageStyle.PageMarginTop.Mm(5f);
//v.PageStyle.PageMarginBottom.Mm(5f);
SautinSoft.PdfVision.TrySetBrowserModeEdgeInRegistry();
string inpUrl = @"https://nationalzoo.si.edu/";
FileInfo outFile = new FileInfo(@"Result.pdf");
int ret = v.ConvertHtmlFileToPDFFile(inpUrl, outFile.FullName);
// 0 - converting successfully
// 1 - can't open input file, check the input path
// 2 - can't create output file, check the output path
// 3 - converting failed
if (ret == 0)
{
// Open the resulting PDF document in a default PDF Viewer.
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(outFile.FullName) { UseShellExecute = true });
}
}
}
}
Imports System
Imports System.IO
Namespace Sample
Friend Class Test
Shared Sub Main(ByVal args() As String)
' Convert HTML file/url to PDF file.
Dim v As New SautinSoft.PdfVision()
'v.Serial = "XXXXXXXXXXXXXXX"
' Specify the conversion options.
v.PageStyle.PageSize.Auto()
'v.PageStyle.PageMarginLeft.Inch(1);
'v.ImageStyle.Heightmm(150);
'v.ImageStyle.WidthInch(10);
' Specify top and bottom page margins.
'v.PageStyle.PageMarginTop.Mm(5f);
'v.PageStyle.PageMarginBottom.Mm(5f);
SautinSoft.PdfVision.TrySetBrowserModeEdgeInRegistry()
Dim inpUrl As String = "https://nationalzoo.si.edu/"
Dim outFile As New FileInfo("Result.pdf")
Dim ret As Integer = v.ConvertHtmlFileToPDFFile(inpUrl, outFile.FullName)
' 0 - converting successfully
' 1 - can't open input file, check the input path
' 2 - can't create output file, check the output path
' 3 - converting failed
If ret = 0 Then
' Open the resulting PDF document in a default PDF Viewer.
System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(outFile.FullName) With {.UseShellExecute = True})
End If
End Sub
End Class
End Namespace
If you are looking also for a .Net solution to Convert HTML to PDF documents, see our Document .Net.
If you need a new code example or have a question: email us at support@sautinsoft.com or ask at Online Chat (right-bottom corner of this page) or use the Form below: