sautinsoft.pdffocus 2024.8.6

dotnet add package sautinsoft.pdffocus --version 2024.8.6                
NuGet\Install-Package sautinsoft.pdffocus -Version 2024.8.6                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="sautinsoft.pdffocus" Version="2024.8.6" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add sautinsoft.pdffocus --version 2024.8.6                
#r "nuget: sautinsoft.pdffocus, 2024.8.6"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install sautinsoft.pdffocus as a Cake Addin
#addin nuget:?package=sautinsoft.pdffocus&version=2024.8.6

// Install sautinsoft.pdffocus as a Cake Tool
#tool nuget:?package=sautinsoft.pdffocus&version=2024.8.6                

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.

Top Features

System Requirement

  • .NET Framework 4.6.2 - 4.8
  • .NET 6, .NET 8
  • 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 = SautinSoft.PdfFocus.CImageOptions.ImageFormats.Jpeg;
f.ImageOptions.Dpi = 200;
         
f.OpenPdf(pdfFile);
f.ToImage(imageFile);

Resources

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 is compatible.  net472 is compatible.  net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on sautinsoft.pdffocus:

Package Downloads
Ibang.Platform.Common.Infrastructure

Package Description

AutomatedVisualTesting

Visual Testing framework to allow tests written in Selenium to compare screenshots and highlight any differences

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2024.8.6 2,684 8/7/2024
2024.3.28 8,746 3/28/2024
2024.2.5 2,407 2/6/2024
2023.5.10 30,928 5/10/2023
8.6.1.18 17,490 1/18/2023
8.5.10.20 17,083 10/20/2022
8.4.5.25 42,904 5/23/2022
8.4.5.18 3,500 5/18/2022
8.3.4.19 10,081 4/19/2022
8.3.3.25 2,972 3/25/2022
8.2.3.3-beta 349 3/10/2022
8.2.1.18 8,195 1/18/2022
8.2.1.11-beta 243 1/12/2022
8.0.7.15-beta 1,108 7/15/2021
8.0.6.21 61,628 6/21/2021
7.9.3.29-beta 1,826 3/30/2021
7.8.1.29 124,761 1/28/2021
7.7.7.24 31,721 7/24/2020
7.5.3.27 85,996 3/26/2020
7.4.2.27 12,711 2/27/2020
7.3.1.21 10,488 1/22/2020
7.1.9.17 29,649 9/17/2019
7.0.3.29 28,062 3/29/2019
7.0.3.18 6,521 3/18/2019
6.9.7.6 42,618 7/6/2018
6.9.4.10 10,934 4/10/2018
6.7.12.11 19,804 12/11/2017
6.6.9.11 16,093 9/11/2017
6.6.9.7 1,473 9/8/2017
6.0.12.29 19,962 1/4/2017

+ PDF to XLSX: New engine to convert PDF documents into Excel workbooks. The main advantage is the minimal number of columns to layout the content.
+ PDF to Image: New engine fast and stable.
+ PDF to Word: New engine to convert PDF to DOCX. The main advantage is the support of embedded fonts various types.
+ Fixed the minor issues, found and sent to us from our customers. Therefore the component became more error-free.