using System.IO;
namespace Sample
{
internal class Test
{
private static void Main(string[] args)
{
SautinSoft.PdfMetamorphosis p = new SautinSoft.PdfMetamorphosis();
// After purchasing the license, please insert your serial number here to activate the component.
//p.Serial = "XXXXXXXXXXX";
//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)
Dim p As New SautinSoft.PdfMetamorphosis()
' After purchasing the license, please insert your serial number here to activate the component.
'p.Serial = "XXXXXXXXXXX"
' 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