HTML JPG OCR XML BMP
Aspose.OCR  for .NET
TXT

Convert JPEG to TXT in C#

Perform optical character recognition on JPEG document and save text as JPEG document using Aspose.OCR for .NET library.

How to convert JPEG to TXT using C#

Aspose.OCR for .NET is a powerful yet easy-to-use and cost-effective library for converting JPEG images to TXT documents. Supporting 26 languages based on Latin, Cyrillic and Chinese, its state-of-the-art optical character recognition engine provides superior recognition speed and accuracy, while isolating you from formulas, neural networks, and other complex technical details. It allows you to add OCR functionality to your .NET applications in less than 10 lines of code.

Aspose.OCR for .NET

processes scanned images or even smartphone photos in JPEG format and creates JPEG documents containing recognized text. To add it to your project, you just need to install the Aspose.OCR

NuGet

package in your project with the following command:

Package Manager Console Command


  PM> Install-Package Aspose.OCR

Steps to Convert JPEG to TXT

With .NET OCR and just a few lines of code, you can create full-featured application that converts an JPEG image to TXT document:

  • Create an instance of AsposeOcr class
  • Call AsposeOCR.RecognizeImage method
  • Pass the JPEG file path as parameter
  • AsposeOCR.RecognizeImage returns a String or file of TXT type

System Requirements

Before running the example, make sure that .NET API compatible with NET Standard 2.0 specification is installed on your system and all external dependencies of Aspose.OCR package are referenced in your project.

  • NET Standard 2.0+ compatible solution
  • Aspose.OCR for .NET referenced in your project.

Live Code Sample

Ready to recognize Recognizing Drop a file here or click to browse *

* By uploading your files or using the service you agree with our Terms of use and Privacy Policy.

Code to be executed - C#

// Initialize OCR engine
var recognitionEngine = new Aspose.OCR.AsposeOcr();
// Extract text from image
string result = recognitionEngine.RecognizeImage("<file name>");
// Display the recognition result
Console.WriteLine(result);
Recognition result
 

JPEG What is JPEG File Format

A JPEG is a type of image format that is saved using the method of lossy compression. The output image, as result of compression, is a trade-off between storage size and image quality. Users can adjust the compression level to achieve the desired quality level while at the same time reduce the storage size. Image quality is negligibly affected if 10:1 compression is applied to the image. The higher the compression value, the higher the degradation in image quality.

Read More

TXT What is TXT File Format

A file with .TXT extension represents a text document that contains plain text in the form of lines. Paragraphs in a text document are recognized by carriage returns and are used for better arrangement of file contents. A standard text document can be opened in any text editor or word processing application on different operating systems. All the text contained in such a file is in human-readable format and represented by sequence of characters.

Read More

Other Supported Conversions

Using C#, one can easily convert different formats including.

TXT (Text Document File)
Text (Text Document File)
DOC (Documents generated by Microsoft Word)
DOCX (Microsoft Word documents)
XLS (Microsoft Excel Binary File Format)
XLSX (Microsoft Excel documents)
PDF (Portable Document Format (PDF))
Searchable PDF (Searchable Portable Network Graphics )
XML (Extensible Markup Language)
JSON (JavaScript Object Notation)