Как преобразовать DOCX, RTF, HTML в PDF под .NET Core на C# и .NET
Полный код
using System.IO;
namespace Sample
{
internal class Test
{
private 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();
//Prepare variables with path.
string docxFile = Path.GetFullPath(@"..\..\..\example.docx");
string pdfFileFromDocx = Path.GetFullPath(@"..\..\..\exampleResultDocx.pdf");
string rtfFile = Path.GetFullPath(@"..\..\..\example.rtf");
string pdfFileFromRtf = Path.GetFullPath(@"..\..\..\exampleResultRtf.pdf");
string htmlFile = Path.GetFullPath(@"..\..\..\example.htm");
string pdfFileFromHtml = Path.GetFullPath(@"..\..\..\exampleResultHtml.pdf");
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(Path.GetFullPath(@"..\..\..\")) { UseShellExecute = true });
// Convert DOCX file to PDF file
p.DocxToPdfConvertFile(docxFile, pdfFileFromDocx);
// Convert RTF file to PDF file
p.RtfToPdfConvertFile(rtfFile, pdfFileFromRtf);
// Convert HTML file to PDF file
p.HtmlToPdfConvertFile(htmlFile, pdfFileFromHtml);
}
}
}
Imports System.IO
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()
' Prepare variables with path.
Dim docxFile As String = Path.GetFullPath("..\..\..\example.docx")
Dim pdfFileFromDocx As String = Path.GetFullPath("..\..\..\exampleFromDocx.pdf")
Dim rtfFile As String = Path.GetFullPath("..\..\..\example.rtf")
Dim pdfFileFromRtf As String = Path.GetFullPath("..\..\..\exampleFromRtf.pdf")
Dim htmlFile As String = Path.GetFullPath("..\..\..\example.htm")
Dim pdfFileFromHtml As String = Path.GetFullPath("..\..\..\exampleFromHtml.pdf")
System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(Path.GetFullPath("..\..\..\")) With {.UseShellExecute = True})
' Convert DOCX file to PDF file
p.DocxToPdfConvertFile(docxFile, pdfFileFromDocx)
' Convert RTF file to PDF file
p.RtfToPdfConvertFile(rtfFile, pdfFileFromRtf)
' Convert HTML file to PDF file
p.HtmlToPdfConvertFile(htmlFile, pdfFileFromHtml)
End Sub
End Class
End Namespace
Если вам нужен пример кода или у вас есть вопрос: напишите нам по адресу support@sautinsoft.com или спросите в онлайн-чате (правый нижний угол этой страницы) или используйте форму ниже: