.NET Cloud REST API for OCR
Product Page | Docs | Demos | Swagger UI | Examples | Blog | Search | Free Support | Free Trial
This cloud SDK helps you perform optical character recognition (OCR) on various image formats using C#, ASP.NET, or other .NET supported languages, in the cloud.
OCR Processing Features
- Recognize and extract text from images via OCR.
- Specify the area of the image from which you want to extract text.
- Perform OCR to recognize text from the whole or partial image.
- Fetch character and font information from raster images.
- Return the response in the JSON or XML format.
- Supports English text recognition.
JPEG, PNG, GIF, BMP, TIFF
Get Started
You do not need to install anything to get started with Aspose.OCR Cloud SDK for .NET. Just create an account at Aspose for Cloud and get your application information.
Simply execute Install-Package Aspose.OCR-Cloud
from the Package Manager Console in Visual Studio to fetch & reference Aspose.OCR assembly in your project. If you already have Aspose.OCR Cloud SDK for .NET and want to upgrade it, please execute Update-Package Aspose.OCR-Cloud
to get the latest version.
Please check the GitHub Repository for common usage scenarios.
// For complete examples and data files, please go to https://github.com/aspose-ocr-cloud/aspose-ocr-cloud-dotnet/
string name = "10.png";
OcrApi api = new OcrApi(conf);
FileApi fileApi = new FileApi(conf /*or ClientID & ClientSecret*/);
fileApi.UploadFile(new UploadFileRequest(name, System.IO.File.OpenRead(name)));
GetRecognizeDocumentRequest request = new GetRecognizeDocumentRequest(name);
OCRResponse response = api.GetRecognizeDocument(request);
return response.Text;
Product Page | Docs | Demos | Swagger UI | Examples | Blog | Search | Free Support | Free Trial