Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Aspose.OCR for .NET is distributed as a NuGet package or as a downloadable file.
Aspose offers two options for Aspose.OCR for .NET NuGet package:
There is no need to download and install any software - the package can be added to your project directly from Microsoft Visual Studio. Both packages are installed and updated in the same way, so they will later be referred as “Aspose.OCR for .NET”.
NuGet Package Manager UI is the easiest way to install and update Aspose.OCR for .NET in your project.
NuGet Package Manager Console lets you install and update Aspose.OCR for .NET in your project using PowerShell commands.
Open your solution or a project in Microsoft Visual Studio.
Click Tools menu, select NuGet Package Manager and click Package Manager Console.
Execute the command:
Install-Package Aspose.OCR
to install the latest version of Aspose.OCR NuGet package.Install-Package Aspose.OCR-GPU
to install the latest version of GPU-accelerated Aspose.OCR NuGet package.Open your solution or a project in Microsoft Visual Studio.
Click Tools menu, select NuGet Package Manager and click Package Manager Console.
Checks if there are newer versions available for any installed packages by executing a command Get-Package -updates
. If an update is available, you will see something like this:
Id Versions Description ProjectName
-- -------- ----------- -----------
Aspose.OCR {22.3.0} Aspose.OCR for .NET is a standalone OCR API... ConsoleApp1
Update Aspose.OCR for .NET to the latest version by executing a command Update-Package Aspose.OCR
(if you are using Aspose.OCR NuGet package) or Update-Package Aspose.OCR-GPU
(if you are using GPU-accelerated Aspose.OCR NuGet package).
To update to a specific version, provide its name in the -Version
parameter . For example: Update-Package Aspose.OCR -Version 22.5.0
.
To use a downloaded Aspose.OCR component in your application:
Aspose.OCR will appear under the project’s References folder.
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.