Winnovative Software Logo Winnovative PDF Library for .NET – Next and Classic PDF Tools for .NET
HTML to PDF for .NET and C# in Windows, Linux, macOS, Azure, Docker
 
Skip Navigation Links
 
PDF to Text Converter Logo

Winnovative Next PDF to Text Converter for .NET

The PDF to Text Converter is a component of the Winnovative PDF Next Library for .NET that enables text extraction from PDF documents in the original layout or optimized for reading, as well as text search in PDF that returns the exact positions of the matches.

The PDF to Text Converter is distributed as part of the Winnovative Next PDF Processor for .NET, which also includes functionality for converting PDF pages to images and extracting images from PDF documents.

The library targets .NET Standard 2.0 and can be used in .NET Core and .NET Framework applications that you can deploy on Windows, Linux and macOS platforms, including Azure App Service and Functions or Docker.

User Guide Logo User Guide
Online Demo Logo Online Demo
Library Components Logo All Components
Download Logo Download
Winnovative Next PDF to Text for .NET
Features Icon

Main Features

  • Convert PDF documents from memory, stream or file to text

  • Search text in PDF documents, returning text positions

  • Convert or search password-protected PDF documents

  • Convert or search the entire PDF or a range of PDF pages

  • Extract text with the original layout or optimized for reading

  • Search text with a case-sensitive option

  • Search text with a whole-word option

  • Asynchronous methods that can be used with async and await

Compatibility Icon

Compatibility

  • Windows 10, 11 and Windows Server 2016 to 2025 (x64 and ARM64)

  • Linux 64-bit distributions (x64 and ARM64)

  • macOS 12.0+ (Apple Silicon / ARM64)

  • .NET 10.0, 9.0, 8.0, 7.0, 6.0, .NET Standard 2.0

  • .NET Framework 4.6.2 to 4.8.1

  • Azure App Service and Azure Functions

  • Azure Cloud Services and Virtual Machines

  • Web, console and desktop applications

  • Docker containers for Windows and Linux

Code Sample Icon

Getting Started

You can quickly get started with the ASP.NET demo application available for download, or you can integrate the library into your own project. The online documentation, contains detailed instructions on how to run an application using Winnovative PDF Next Library for .NET on Windows, Linux and macOS platforms, Azure App Service and Azure Functions for Windows and Linux.

You can view the current capabilities of the library by checking the online demo application and the API reference in the online documentation.

Download Icon Download Demo Application

The ZIP package available for download from the link below includes an ASP.NET demo application project with complete C# source code covering all major library features.

Download Winnovative PDF Next v20.0 for .NET

Running the samples in the demo application that involve HTML to PDF conversion features on Linux platforms might require installing some system dependency packages. The documentation includes an entire section dedicated to building, publishing and running the demo application on multiple platforms.

Winnovative PDF Next for .NET NuGet Packages

NuGet Packages

For Windows x64 deployments add a reference to the Winnovative.Pdf.Next.PdfProcessor.Windows NuGet Package and for Linux x64 deployments add a reference to the Winnovative.Pdf.Next.PdfProcessor.Linux NuGet Package. The packages without an architecture suffix target x64.

For Windows ARM64 and Linux ARM64 deployments add a reference to the Winnovative.Pdf.Next.PdfProcessor.Windows.Arm64 and Winnovative.Pdf.Next.PdfProcessor.Linux.Arm64 NuGet Packages respectively.

For macOS on Apple Silicon (ARM64) deployments add a reference to the Winnovative.Pdf.Next.PdfProcessor.MacOS NuGet Package.

The package for Windows is referenced by the Winnovative.Pdf.Next.Windows metapackage for all components, the package for Windows ARM64 is referenced by the Winnovative.Pdf.Next.Windows.Arm64 metapackage for all components, the package for Linux is referenced by the Winnovative.Pdf.Next.Linux metapackage for all components, the package for Linux ARM64 is referenced by the Winnovative.Pdf.Next.Linux.Arm64 metapackage for all components and the package for macOS is referenced by the Winnovative.Pdf.Next.MacOS metapackage for all components.

There are also multiplatform metapackages that reference both the Windows x64 and Linux x64 PDF Processor packages: Winnovative.Pdf.Next.PdfProcessor for the PDF Processor functionality and Winnovative.Pdf.Next for the entire Winnovative PDF Next library.

Winnovative PDF Next for .NET NuGet Packages Logo

Installation

The PDF Processor component generally does not require the installation of additional dependencies, either on Windows or on Linux.

Winnovative PDF Next for .NET Namespace Logo

Winnovative.Pdf.Next Namespace

All components of the Winnovative PDF Next for .NET library share the same Winnovative.Pdf.Next namespace and can be used together in the same application. To use the library in your own code, add the using directive at the top of your C# source file, as shown below.

// add this using statement at the top of your C# file
using Winnovative.Pdf.Next;
Code Sample Icon C# Code Samples

You can use the sample code below to convert a PDF document to a string and search for text in the PDF.

// Create the PDF to Text converter instance with default options
PdfToTextConverter pdfToTextConverter = new PdfToTextConverter();

// Extract text from the specified PDF file
string extractedText = pdfToTextConverter.ConvertToText(pdfFilePath);

// Search text in PDF
bool caseSensitive = false;
bool wholeWord = false;
FindTextLocation[] findTextLocations = pdfToTextConverter.FindText(pdfFilePath, textToFind, caseSensitive, wholeWord);