Skip to content

PDF Metamorphosis .Net by SautinSoft is a component to convert HTML, Text, RTF and DOCX documents into PDF format. The component is entirely written in managed C#, it's absolutely standalone and doesn't require Adobe Acrobat® or MS Word®. Developers can convert their files into PDF with only two lines of code within C#, VB.Net, ASP.Net!

Notifications You must be signed in to change notification settings

SautinSoft/SautinSoft.PdfMetamorphosis.Examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nuget Nuget

.NET SDK to convert HTML, DOCX, TXT to PDF

meta

SautinSoft.PdfMetamorphosis is .NET assembly (SDK) which gives API to convert Text, HTML, RTF, DOC and DOCX documents to PDF format.

Quick links

Top Features

System Requirement

  • .NET Framework 4.6.2 - 4.8
  • .NET Core 2.0 - 3.1, .NET 5, 6, 7, 8
  • .NET Standard 2.0
  • Windows, Linux, macOS, Android, iOS.

Getting Started with PDF Metamorphosis .Net

Are you ready to give PDF Metamorphosis .NET a try? Simply execute Install-Package sautinsoft.pdfmetamorphosis from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have PDF Metamorphosis .NET and want to upgrade the version, please execute Update-Package sautinsoft.pdfmetamorphosis to get the latest version.

Convert Word to PDF

string docxPath = @"..\..\example.docx";
string pdfPath = Path.ChangeExtension(docxPath, ".pdf");

SautinSoft.PdfMetamorphosis p = new SautinSoft.PdfMetamorphosis();
            
p.DocxToPdfConvertFile(docxPath, pdfPath);

Convert HTML to PDF

string inputFile = @"..\..\example.htm";
string outputFile = @"..\..\test.pdf";

SautinSoft.PdfMetamorphosis p = new SautinSoft.PdfMetamorphosis();
            
p.HtmlToPdfConvertFile(inputFile, outputFile);

Merge PDF files

string[] pdfFiles = { @"..\..\test-00001.pdf", @"..\..\test-00002.pdf" };

SautinSoft.PdfMetamorphosis p = new SautinSoft.PdfMetamorphosis();

p.MergePDFFileArrayToPDFFile(pdfFiles, @"..\..\test_Split_and_Merge_1and2page.pdf");

Resources

About

PDF Metamorphosis .Net by SautinSoft is a component to convert HTML, Text, RTF and DOCX documents into PDF format. The component is entirely written in managed C#, it's absolutely standalone and doesn't require Adobe Acrobat® or MS Word®. Developers can convert their files into PDF with only two lines of code within C#, VB.Net, ASP.Net!

Resources

Stars

Watchers

Forks