Конвертирование HTML файла в PDF файл на C# и.NET
Полный код
using System;
using System.IO;
using System.Collections;
namespace Sample
{
class Test
{
static void Main(string[] args)
{
// Before starting, we recommend to get a free 100-day key:
// https://sautinsoft.com/start-for-free/
// Apply the key here:
// SautinSoft.PdfMetamorphosis.SetLicense("...");
SautinSoft.PdfMetamorphosis p = new SautinSoft.PdfMetamorphosis();
//specify some options
p.PageSettings.Size.A4();
p.PageSettings.Orientation = SautinSoft.PdfMetamorphosis.PageSetting.Orientations.Landscape;
p.PageSettings.Numbering.Text = "Page {page} of {numpages}";
if (p != null)
{
string inputFile = @"..\..\..\example.htm";
string outputFile = @"..\..\..\test.pdf";
int result = p.HtmlToPdfConvertFile(inputFile, outputFile);
if (result == 0)
{
System.Console.WriteLine("Converted successfully!");
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(outputFile) { UseShellExecute = true });
}
else
{
System.Console.WriteLine("Converting Error!");
}
}
}
}
}
Namespace Sample
Friend Class Test
Shared Sub Main(ByVal args() As String)
' Before starting, we recommend to get a free 100-day key:
' https://sautinsoft.com/start-for-free/
' Apply the key here:
' SautinSoft.PdfMetamorphosis.SetLicense("...");
Dim p As New SautinSoft.PdfMetamorphosis()
'specify some options
p.PageSettings.Size.A4()
p.PageSettings.Orientation = SautinSoft.PdfMetamorphosis.PageSetting.Orientations.Landscape
p.PageSettings.Numbering.Text = "Page {page} of {numpages}"
If p IsNot Nothing Then
Dim inputFile As String = "..\..\..\example.htm"
Dim outputFile As String = "..\..\..\test.pdf"
Dim result As Integer = p.HtmlToPdfConvertFile(inputFile, outputFile)
If result = 0 Then
System.Console.WriteLine("Converted successfully!")
System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(outputFile) With {.UseShellExecute = True})
Else
System.Console.WriteLine("Converting Error!")
End If
End If
End Sub
End Class
End Namespace
Если вам нужен пример кода или у вас есть вопрос: напишите нам по адресу support@sautinsoft.ru или спросите в онлайн-чате (правый нижний угол этой страницы) или используйте форму ниже: