Get Dynamsoft Capture Vision Free Trial
JavaScript Package
.NET Package
C++ Package
Python Package
pip install dynamsoft-capture-vision-bundle Copied √
Java Package
<repositories>
<repository>
<id>dcv</id>
<url>
https://download2.dynamsoft.com/maven/jar
</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.dynamsoft</groupId>
<artifactId>dcv</artifactId>
<version>3.2.1100</version>
</dependency>
</dependencies>
Node.js Package
iOS Package
1. Add the frameworks in your Podfile.
target 'HelloWorld' do
use_frameworks!
pod 'DynamsoftCaptureVisionBundle','3.2.3000'
end
2. Execute the pod command to install the frameworks and generate workspace(HelloWorld.xcworkspace):
pod install
Android Package
1. Open the file [App Project Root Path]\settings.gradle and add the Maven repository:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
url "https://download2.dynamsoft.com/maven/aar"
}
}
}
2. Open the file [App Project Root Path]\app\build.gradle and add the dependencies:
dependencies {
implementation 'com.dynamsoft:capturevisionbundle:3.2.3000'
}
MAUI Package
React Native Package
Flutter Package