Skip to content

PDF Focus .Net is designed to help you in development of applications where is necessary to convert any PDF documents.

License

Notifications You must be signed in to change notification settings

SautinSoft/SautinSoft.PdfFocus.Examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nuget Nuget

.NET SDK to convert PDF to ALL

focus

SautinSoft.PdfFocus is .NET assembly (SDK) which gives API to convert PDF to All formats: DOCX, RTF, HTML, XML, Text, Excel, Images.

Quick links

Top Features

System Requirement

  • .NET Framework 4.6.1 - 4.8.1
  • .NET Core 2.0 - 3.1, .NET 5, 6, 7
  • .NET Standard 2.0
  • Windows, Linux, macOS, Android, iOS.

Getting Started with PDF Focus .Net

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

Convert PDF to Word

string pdfFile = @"..\..\text and graphics.pdf";
string wordFile = Path.ChangeExtension(pdfFile, ".docx");

// Convert a PDF file to a Word file
SautinSoft.PdfFocus f = new SautinSoft.PdfFocus();
            
f.OpenPdf(pdfFile);
f.ToWord(wordFile);

Convert PDF to Excel

string pdfFile = @"..\..\text and graphics.pdf";
string excelFile = Path.ChangeExtension(pdfFile, ".xlsx");

// Convert a PDF file to a Excel file
SautinSoft.PdfFocus f = new SautinSoft.PdfFocus();
            
f.OpenPdf(pdfFile);
f.ToExcel(excelFile);

Convert PDF to HTML

string pdfFile = @"..\..\text and graphics.pdf";
string htmlFile = Path.ChangeExtension(pdfFile, ".html");

// Convert a PDF file to a HTML file
SautinSoft.PdfFocus f = new SautinSoft.PdfFocus();
            
f.OpenPdf(pdfFile);
f.ToHTML(htmlFile);

Convert PDF to JPG

string pdfFile = @"..\..\text and graphics.pdf";
string imageFile = Path.ChangeExtension(pdfFile, ".jpg");

// Convert a PDF file to a JPG file
SautinSoft.PdfFocus f = new SautinSoft.PdfFocus();
f.ImageOptions.ImageFormat = System.Drawing.Imaging.ImageFormat.Jpeg;
f.ImageOptions.Dpi = 200;
         
f.OpenPdf(pdfFile);
f.ToImage(iamgeFile);

Resources

About

PDF Focus .Net is designed to help you in development of applications where is necessary to convert any PDF documents.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published